body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    position: relative;
    min-height: 100vh;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

h1, h2 {
    color: #555;
    text-align: left; /* Align headings to the left */
}

.hero {
    text-align: center;
    padding: 20px 0;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.gallery-section {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-section h3 {
    color: #555;
    margin-bottom: 10px;
    text-align: center; /* Align gallery section headings to the left */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.daily-image {
    text-align: center;
    margin-top: 20px;
}

.daily-image img {
    max-width: 100%;
    height: auto;
}

figure img {
    max-width: 100%; /* Make image responsive */
    height: auto;      /* Maintain aspect ratio */
    display: block;    /* Removes extra space below image */
    margin: 0 auto;    /* centers image */
}

.daily-image figcaption {
    font-style: italic;
    color: #777;
    margin-top: 5px;
}

#cookie-banner {
    background-color: #eee;
    color: #333;
    padding: 15px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

#cookie-banner p {
    margin: 0;
}

#cookie-banner button {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    background-color: #5cb85c;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
}

#cookie-banner button:hover {
    background-color: #4cae4c;
}

#cookie-banner a {
    color: #007bff;
    text-decoration: none;
    display: inline-block;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    #cookie-banner {
        flex-direction: row;
        justify-content: center; /* Center items horizontally */
        align-items: center;
    }
    #cookie-banner p,
    #cookie-banner button,
    #cookie-banner a {
        margin: 0 5px; /* Add horizontal margin between elements */
    }
}


.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
}

.lightbox-caption {
    color: white;
    margin-top: 10px;
    text-align: center;
    font-size: 1.1em;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    border: none;
    background: none;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    align-items: center;
}

.lightbox-prev,
.lightbox-next {
    color: white;
    font-size: 2em;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    border: none;
    background: none;
    padding: 0;
    line-height: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-hidden {
    display: none;
}

/* Styles for the image modal */
    .image-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .image-modal-content {
        max-width: 90%;
        max-height: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-modal-content img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 5px;
    }

    .image-modal-content p {
        color: white;
        margin-top: 10px;
        text-align: center;
    }
    .gallery-image{
        cursor: pointer;
    }
    .section {
        text-align: center;
        margin-top: 20px; /* Add space above the section */
    }

    .section h2 {
        color: #555; /* Use a consistent heading color */
        margin-bottom: 10px; /* Add space below the heading */
        text-align: center;
    }


.privacy-content {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    text-align: left;
}

.privacy-content h1, .privacy-content h2, .privacy-content h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.privacy-content p {
    margin-bottom: 10px;
}

.cookie-status-box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
}

.cookie-status-box p {
    margin-bottom: 10px;
    font-weight: bold;
}

.cookie-status-box button {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-status-box button:hover {
    background-color: #0056b3;
}