/*
 * Guest2Owner Professional Edition
 * Author: Brian Rolland
 * Version: 8.8.8
 * Build Date: 2026-07-11
 */
/* ====================================================
   Featured Photos Carousel
==================================================== */

.featured-photos{
    background:#ffffff;
    padding:70px 0 30px;
}

.featured-photos-inner{
    width:min(1180px,92%);
    margin:0 auto;
}

.featured-photos-heading{
    text-align:center;
    margin-bottom:28px;
}

.featured-photos-heading h5{
    color:#1d4e89;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:10px;
}

.featured-photos-heading h2{
    font-family:'Cormorant Garamond',serif;
    color:#0b2239;
    font-size:clamp(42px,5vw,68px);
    margin:0;
}

.featured-carousel{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
}

.featured-track{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:12px 6px 24px;
    scrollbar-width:thin;
}

.featured-slide{
    flex:0 0 320px;
    position:relative;
    border:none;
    padding:0;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
    background:#0b2239;
    box-shadow:0 18px 45px rgba(11,34,57,.16);
}

.featured-slide img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    transition:.45s ease;
}

.featured-slide:hover img{
    transform:scale(1.06);
}

.featured-slide span{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px 18px 14px;
    color:white;
    text-align:left;
    font-weight:800;
    background:linear-gradient(transparent,rgba(0,0,0,.75));
}

.featured-arrow{
    flex:0 0 auto;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:38px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
}

/* ====================================================
   Gallery Lightbox
==================================================== */

.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:100000;
    background:rgba(0,0,0,.94);
    display:none;
    align-items:center;
    justify-content:center;
    padding:28px;
}

.gallery-lightbox.active{
    display:flex;
}

.gallery-lightbox-content{
    max-width:min(1200px,92vw);
    max-height:90vh;
    text-align:center;
}

.gallery-lightbox-content img{
    max-width:100%;
    max-height:78vh;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.55);
    cursor:zoom-in;
    transition:.25s ease;
}

.gallery-lightbox-content img.zoomed{
    transform:scale(1.35);
    cursor:zoom-out;
}

.gallery-lightbox-meta{
    color:white;
    margin-top:14px;
    display:flex;
    justify-content:space-between;
    gap:18px;
    align-items:center;
    font-weight:800;
}

.gallery-lightbox-meta p{
    margin:0;
    text-align:left;
}

.gallery-lightbox-meta span{
    opacity:.8;
    white-space:nowrap;
}

.gallery-lightbox-close{
    position:absolute;
    top:24px;
    right:30px;
    border:none;
    background:transparent;
    color:white;
    font-size:52px;
    cursor:pointer;
    line-height:1;
}

.gallery-lightbox-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:48px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.gallery-lightbox-prev{
    left:26px;
}

.gallery-lightbox-next{
    right:26px;
}

.gallery-grid img{
    cursor:pointer;
}

@media(max-width:768px){
    .featured-slide{
        flex-basis:260px;
    }

    .featured-slide img{
        height:190px;
    }

    .featured-arrow{
        display:none;
    }

    .gallery-lightbox{
        padding:18px;
    }

    .gallery-lightbox-arrow{
        width:46px;
        height:46px;
        font-size:38px;
    }

    .gallery-lightbox-prev{
        left:10px;
    }

    .gallery-lightbox-next{
        right:10px;
    }

    .gallery-lightbox-close{
        top:16px;
        right:18px;
        font-size:44px;
    }

    .gallery-lightbox-meta{
        flex-direction:column;
        gap:6px;
    }
}
