/* styles.css */

:root {
    --accent: #114b5fff;
    --pale: #e8d7ffff;
    --background1: #91c7b1d0;
    --background2: #a8c6bbff;
    --pale2: #c8cdcdff;
    --pale3: #d4af37;
    --black: rgb(0,0,0);
}


body {
    background-image: url('Background1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


header {
    background-color: var(--accent);
    color: var(--pale3);
    text-align: center;
    padding: calc(.5% + 0.1em);
    font-size: 2em;
    letter-spacing: 4px;
    border-bottom: 1px solid var(--accent);
    opacity: 0.9;
    position: fixed;
    top: 0; /* Stick it to the top of the viewport */
    left: 0;
    right: 0;
    z-index: 20; 
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

header nav li {
    display: inline;
    margin: 0 15px;
}

header nav a {
    text-decoration: none;
    font-size: 16px;
    color: var(--pale3);  /* Adjust the color as needed */
    transition: color 0.3s ease; /* Add a smooth color transition */
}

header nav a:hover {
    color: var(--pale2); /* Change the color on hover */
}

main {
    top: 40px auto;
    max-width: 900px;
    margin: 100px auto 40px;
    padding: 40px 60px;
    background-color: var(--background1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1, h2 {
    color: var(--accent);
    text-align: center;
}

p {
    line-height: 1.6;
    text-align: center;
}

section {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

#mapcontainer{
    width: 100%;
    position: relative;
}

#map{
    width: 100%;
    padding-top: 80%;
    text-align: center;
    z-index: 10;
}

#itemList {
    list-style-type: none;
    padding: 0;
}

#itemList li {
    margin-bottom: 10px;
}

.container {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
}

.text {
    font-size: 20px;
}
