/* GLOBAL */
body {
    background: #FFF4C9 !important;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.footer-info-box {
    background-color: rgba(255,255,255,0.85);
    border: none;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Flex layout for side-by-side sections */
.info-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Make both columns consistent */
.footer-opening-hours p,
.footer-contact-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #250000;
}

/* Links underneath */
.info-links {
    margin-top: 20px;
    text-align: center;
}

.info-link {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 14px;
    background-color: #D97A2B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.info-link:hover {
    background-color: #b96522;
}

/* Mobile-friendly stacking */
@media (max-width: 600px) {
    .info-flex {
        flex-direction: column;
        text-align: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

/* HEADINGS */
h1 {
    color: #ED9121;
    text-align: center;
    font-size: 50px;
    margin-top: 20px;
}

/* INTRO TEXT */
.gallery-intro {
    max-width: 900px;
    margin: 20px auto 30px auto;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    color: #fff;
    line-height: 1.6;
    backdrop-filter: blur(2px);
}

.gallery-intro ul {
    padding-left: 20px;
    margin: 15px 0;
}

.gallery-intro li {
    margin-bottom: 8px;
}

/* FILTER BUTTONS */
.filters {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 18px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    background: #EFB261;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #E56717;
        transform: scale(1.05);
}

  

/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

    .gallery img {
        width: 100%;
        height: 180px; /* or 200px if you prefer */
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

        .gallery img:hover {
            opacity: 0.7;
            transform: scale(1.02);
        }

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

    .lightbox:target {
        display: flex;
    }

.lightbox picture,
.lightbox picture img {
    max-width: 90%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.lightbox-content picture,
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
}

/* CAPTION */
.caption {
    color: white;
    margin-top: 10px;
    text-align: center;
    font-size: 1.1rem;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 45px;
    color: white;
    text-decoration: none;
    z-index: 10000;
    transition: 0.2s;
}

    .close-btn:hover {
        color: #EFB261;
        transform: scale(1.1);
    }

/* NEXT / PREVIOUS */
.lightbox .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    text-decoration: none;
    padding: 10px 15px;
    z-index: 10000;
    transition: 0.2s;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.lightbox .nav-btn:hover {
    color: #EFB261;
    transform: scale(1.2);
}

/* MOBILE */
@media (max-width: 600px) {
    .lightbox img {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox .nav-btn {
        font-size: 40px;
    }

    .close-btn {
        font-size: 40px;
    }
}

/* Social Icon */
.social-icon {
    max-width: 200px;
    min-width: 44px;
    max-height: 50px;
    min-height: 44px;
}