header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    display: flex;
    border-radius: 50px;
    margin-bottom: 20px;
    gap: 10px;
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

header * {
    margin: 10px;
}

#headerImage {
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

#headerImage img {
    width: 95vw;
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 0;
    padding: 20px;
}

#infoPanels {
    flex-direction: column;
    display: flex;
    margin-top: 20px;
    gap: 20px;
    width: 95vw;
    padding: 20px;
}

#infoPanels div {
    background-color: rgba(190,112,192,0.67);
    border-radius: 10px;
    padding: 15px;
}

#accommodations, #topActivities, #topRestaurants {
    text-align: center;
    list-style-position: inside;
}

a {
    text-decoration: none;
    color: black;
    background-color: rgba(190, 112, 192, 0.67);
    padding: 5px;
    border-radius: 5px;
}

form {
    justify-items: center;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 10px;
    font-weight: bold;
}

form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

#formQuestions {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #cccccc;
    padding: 20px;
    border-radius: 10px;
}

#formQuestions button {
    background-color: #6a0dad;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
}

#formWeatherSection {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
    padding: 20px;
    width: 95vw;
}

#formWeatherSection section {
    background-color: rgba(190,112,192,0.67);
    border-radius: 10px;
    padding: 15px;
    width: 47vw;
    text-align: center;
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}


table th, table td {
    border: solid 1px black;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

#gettingThere {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
    padding: 20px;
    width: 95vw;
}

#directionsMap {
    display: flex;
    background-color: rgba(190,112,192,0.67);
    border-radius: 10px;
    padding: 15px;

}

#directionsMap section {
    width: 47vw;
    text-align: center;
}

#map img {
    height: 300px;
}

#expandMap {
    background-color: #333333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
}

#map {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#mapOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#mapOverlay img {
    border-radius: 10px;
    width: 95vw;
    height: 95vh;
    object-fit: contain;
}

#closeOverlayButton {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 600px) {
    #formWeatherSection {
        flex-direction: column;
    }

    #formWeatherSection section {
        width: 90vw;
    }

    #directionsMap {
        flex-direction: column;
    }

    #directionsMap section {
        width: 90vw;
    }
}

