img{
    max-width:100%;
    height:auto;
    display:block;
}

:root{
    --green:#0f5132;
    --dark:#111;
    --gold:rgb(255,156,0);
    --text:#222;
    --muted:#666;
    --white:#fff;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Inter',sans-serif;
    background:#fafafa;
    color:var(--text);
    line-height:1.6;
}

.container{
    max-width:1100px;
    margin:auto;
}

/* NAV */
nav{
    position:fixed;
    width:100%;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 50px;
    background:rgba(0,0,0,0.35);
    color:white;
    z-index:1000;
    transition:0.3s ease;
    backdrop-filter:blur(10px);
}
nav.scrolled{background:var(--green)}

nav ul{
    display:flex;
    gap:22px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    letter-spacing:0.5px;
}

nav a:hover{color:var(--gold)}

.lang{
    background:transparent;
    border:1px solid white;
    color:white;
    padding:5px;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.2)
    );
    z-index:-1;
}


.hero h1{
    font-family:'Playfair Display',serif;
    font-size:52px;
    font-weight:500;
}

.hero p{
    margin-top:12px;
    font-size:16px;
    opacity:0.9;
    color:#f1f1f1;
}

.btns{margin-top:25px}

.btn{
    padding:12px 24px;
    border:1px solid white;
    background:transparent;
    color:white;
    cursor:pointer;
    margin:5px;
    transition:0.3s;
    font-size:13px;
}

.btn:hover{background:white;color:black}

.btn.gold{
    border:1px solid var(--gold);
    color:var(--gold);
}
.btn.gold:hover{
    background:var(--gold);
    color:black;
}

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    background-color:#000;
    opacity:0;
    transition:opacity 0.8s ease;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    z-index:1;
}

.slide.active{
    opacity:1;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* SECTIONS */
.section{
    padding:100px 20px;
    text-align:center;
}

.section:nth-child(even){
    background:#f6f6f6;
}

.section h2{
    font-family:'Playfair Display',serif;
    font-size:38px;
    margin-bottom:15px;
    position:relative;
}

.section h2::after{
    content:"";
    width:60px;
    height:2px;
    background:var(--gold);
    display:block;
    margin:12px auto 0;
}

.section p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

/* ROOMS */
.rooms{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:50px;
}

.room{
    background:white;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
}

.room:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.room img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s ease;
}

.room:hover img{
    transform:scale(1.05);
}

.room-info{
    padding:18px;
    text-align:left;
}

.room-info h3{
    font-family:'Playfair Display',serif;
}

.room-info span{
    color:var(--gold);
    font-weight:600;
}

/* BLOCKS */
.block{
    background:white;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    margin-top:15px;
    transition:0.3s ease;
}

.block:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

#contact .block{
    text-align:left;
    max-width:600px;
    margin:auto;
    line-height:2;
    font-size:15px;
}

footer{
    background:var(--dark);
    color:white;
    text-align:center;
    padding:50px 20px;
    margin-top:60px;
    font-size:14px;
}

@media(max-width:768px){

    /* NAVBAR */
    nav{
        padding:12px 15px;
        flex-wrap:wrap;
    }

    nav ul{
        display:none; /* hide menu for now (we'll improve it next) */
    }

    .lang{
        margin-left:auto;
    }

    /* HERO */
    .hero{
        padding-bottom:60px;
    }

    .hero h1{
        font-size:30px;
        line-height:1.2;
    }

    .hero p{
        font-size:13px;
    }

    .btn{
        padding:10px 18px;
        font-size:12px;
    }

    /* SECTIONS */
    .section{
        padding:60px 15px;
    }

    .section h2{
        font-size:26px;
    }

    /* ROOMS GRID */
    .rooms{
        grid-template-columns:1fr; /* stack vertically */
    }

    .room img{
        height:200px;
    }

}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* MOBILE MENU */
@media(max-width:768px){

    .menu-toggle{
        display:block;
        color:white;
    }

    nav ul{
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:var(--green);
        flex-direction:column;
        align-items:center;
        display:none;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

}

.btn{
    min-width:140px;
}

body{
    overflow-x:hidden;
}

.container{
    padding:0 15px;
}

.sticky-book{
    position:fixed;
    bottom:20px;
    right:20px;
    background:var(--gold);
    color:black;
    padding:14px 22px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    z-index:999;
    transition:0.3s ease;
}

.sticky-book:hover{
    transform:translateY(-3px);
    background:#ffb84d;
}

/* MOBILE FULL-WIDTH VERSION */
@media(max-width:768px){
    .sticky-book{
        left:15px;
        right:15px;
        bottom:15px;
        text-align:center;
        border-radius:10px;
        font-size:15px;
    }
}

.booking-fab{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;
}

/* Main button */
.booking-main{
    background:var(--gold);
    color:black;
    border:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

/* Options container */
.booking-options{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:10px;
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
    transition:0.3s;
}

/* When active */
.booking-options.active{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

/* Individual buttons */
.booking-options a{
    background:white;
    color:black;
    padding:10px 15px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    text-align:center;
}

.booking-options a:hover{
    background:var(--gold);
}

/* MOBILE FULL WIDTH */
@media(max-width:768px){

    .booking-fab{
        left:15px;
        right:15px;
    }

    .booking-main{
        width:100%;
        border-radius:10px;
    }

    .booking-options a{
        width:100%;
    }

}

.slide-content{
    color:white;
    max-width:800px;
}

/* Hide everything initially */
.slide-content h1,
.slide-content p,
.slide-content .btns{
    opacity:0;
    transform:translateY(30px);
}

/* When slide is active */
.slide.active .slide-content h1{
    animation:fadeUp 1s ease forwards;
    animation-delay:0.3s;
}

.slide.active .slide-content p{
    animation:fadeUp 1s ease forwards;
    animation-delay:0.8s;
}

.slide.active .slide-content .btns{
    animation:fadeUp 1s ease forwards;
    animation-delay:1.3s;
}

.slide-content h1{
    font-family:'Playfair Display',serif;
    font-size:56px;
    font-weight:500;
    text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.slide-content p{
    margin-top:10px;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:0.85;
}

.slider-progress{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    width:220px;
    height:3px;
    background:rgba(255,255,255,0.25);
    border-radius:10px;
    overflow:hidden;
    z-index:5;
}

.progress-fill{
    width:0%;
    height:100%;
    background:var(--gold);
}

.progress-fill.animate{
    animation:fillProgress linear forwards;
}

@keyframes fillProgress{
    from{
        width:0%;
    }
    to{
        width:100%;
    }
}

.slide-content{
    z-index:2;
    position:relative;
}

.hero-slider{
    touch-action: pan-y;
    z-index: 1;
}

.hero{
    touch-action: pan-y;
}

.hero-slider, .slide {
    pointer-events: auto;
}

/* CARD */
.conf-card{
    position:relative;
    height:420px;
    border-radius:20px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    isolation:isolate;
}

/* DARK OVERLAY */
.conf-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.1)
    );
}

/* CONTENT */
.conf-content{
    position:relative;
    padding:25px;
    z-index:2;
    transform:translateY(40px);
    transition:0.5s ease;
}

/* HOVER EFFECT */
.conf-card:hover .conf-content{
    transform:translateY(0);
}

.conf-card:hover{
    transform:scale(1.03);
}

/* TEXT */
.conf-content h3{
    font-family:'Playfair Display',serif;
    font-size:24px;
    margin-bottom:5px;
}

.conf-content ul li{
    margin-bottom:6px;
}

/* BUTTON */
.conf-btn{
    display:inline-block;
    margin-top:14px;
    padding:10px 20px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    font-size:12px;
    letter-spacing:1px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
}

/* sliding gold fill */
.conf-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:var(--gold);
    transition:0.4s;
    z-index:-1;
}

.conf-btn:hover::before{
    left:0;
}

.conf-btn:hover{
    background:var(--gold);
    color:black;
}

/* MOBILE */
@media(max-width:768px){
    .conf-card{
        height:360px;
    }

    .conf-content{
        transform:none;
    }
}

.luxury-conference{
    background:#0a0a0a;
    color:white;
}

.subtitle{
    color:#bbb;
    max-width:700px;
    margin:10px auto 40px;
}

/* HERO STRIP */
.conf-hero{
    height:360px;
    border-radius:24px;
    display:flex;
    align-items:flex-end;
    padding:60px;
    margin-bottom:90px;
    box-shadow:0 30px 80px rgba(0,0,0,0.6);
    position:relative;
    overflow:hidden;
}

/* subtle luxury glow */
.conf-hero::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    box-shadow:inset 0 0 120px rgba(255,156,0,0.08);
}

.conf-hero h3{
    font-family:'Playfair Display',serif;
    font-size:34px;
    letter-spacing:0.5px;
}

.conf-hero p{
    font-size:15px;
    color:#ddd;
    margin-top:10px;
    line-height:1.7;
    max-width:500px;
}

.conf-actions{
    margin-top:20px;
}

/* VENUE GRID */
.conference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.conf-card:hover{
    transform:scale(1.03);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.conf-card:hover .conf-content{
    transform:translateY(0);
}

.conf-content h3{
    font-family:'Playfair Display',serif;
    font-size:26px;
    margin-bottom:6px;
}

.tag{
    font-size:12px;
    color:var(--gold);
    letter-spacing:1px;
}

.conf-content ul{
    list-style:none;
    margin:14px 0;
    font-size:13px;
    color:#ddd;
    line-height:1.6;
}

.price{
    color:var(--gold);
    font-weight:600;
}

.conf-btn:hover{
    background:var(--gold);
    color:black;
}

/* PACKAGES */
.package{
    background:rgba(255,255,255,0.04);
    padding:25px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s ease;
    position:relative;
}

.package:hover{
    transform:translateY(-5px);
    border-color:rgba(255,156,0,0.4);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.package h4{
    color:var(--gold);
    font-size:16px;
    margin-bottom:8px;
    letter-spacing:0.5px;
}

.package p{
    font-size:13px;
    color:#ccc;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.package h4{
    color:var(--gold);
    margin-bottom:5px;
}

.conf-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to right, transparent, var(--gold), transparent);
    opacity:0.6;
}


/* animated light sweep */
.conf-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.08),
        transparent 60%
    );
    opacity:0;
    transition:0.6s;
}

.conf-card:hover::after{
    opacity:1;
    animation:lightSweep 1.5s ease;
}

@keyframes lightSweep{
    from{transform:translateX(-100%)}
    to{transform:translateX(100%)}
}

.conf-hero-content{
    background:rgba(0,0,0,0.35);
    padding:25px 30px;
    border-radius:14px;
    background:rgba(0,0,0,0.55);
    border:1px solid rgba(255,255,255,0.08);
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.luxury-conference{
    background:
        radial-gradient(circle at top, rgba(255,156,0,0.08), transparent 40%),
        #0a0a0a;
}

h2{
    letter-spacing:1px;
}

.subtitle{
    font-size:15px;
    letter-spacing:0.5px;
}

.reveal{
    opacity:0;
    transform: translateY(60px) scale(0.98);
    filter: blur(6px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity, filter;
}

.reveal.active{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.conf-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255,156,0,0.15);
}

/* subtle gold glow sweep */
.conf-card::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 30% 20%, rgba(255,156,0,0.18), transparent 60%);
    opacity:0;
    transition:0.5s;
}

.conf-card:hover::after{
    opacity:1;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.contact-card{
    background:white;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
}

.contact-card h3{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
}

.contact-card a{
    color:var(--green);
    text-decoration:none;
}

.contact-card input,
.contact-card textarea{
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:inherit;
    font-size:14px;
}

.contact-card input:focus,
.contact-card textarea:focus{
    outline:none;
    border-color:var(--gold);
}

/* FOOTER */
.footer{
    background:#0b0b0b;
    color:#ddd;
    padding:60px 20px 30px;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-col h3{
    font-family:'Playfair Display',serif;
    color:white;
    margin-bottom:10px;
}

.footer-col h4{
    color:white;
    margin-bottom:12px;
    font-size:15px;
}

.footer-col p{
    font-size:14px;
    color:#aaa;
    line-height:1.7;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:8px;
}

.footer-col ul a{
    color:#aaa;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-col ul a:hover{
    color:var(--gold);
}

/* NEWSLETTER */
.newsletter{
    display:flex;
    margin-top:10px;
}

.newsletter input{
    flex:1;
    padding:10px;
    border:none;
    outline:none;
    font-size:13px;
}

.newsletter button{
    padding:10px 15px;
    background:var(--gold);
    border:none;
    cursor:pointer;
    font-size:13px;
}

/* BOTTOM BAR */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:40px;
    padding-top:15px;
    text-align:center;
    font-size:13px;
    color:#777;
}

/* ABOUT SECTION UPGRADE */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.about-content{
    text-align:left;
}

.about-content h2{
    margin-bottom:10px;
}

.about-content .lead{
    font-size:18px;
    color:#333;
    margin-bottom:15px;
}

.about-content p{
    margin-bottom:20px;
}

/* MOBILE */
@media(max-width:768px){
    .about-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }
}

/* LUXURY INTRO (MAMOUNIA STYLE) */
.lux-intro{
    position:relative;
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    color:white;
}

/* BACKGROUND IMAGE */
.lux-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.3)
        ),
        url('images/about.webp') center/cover no-repeat;

    transform:scale(1.05);
}

/* CONTENT */
.lux-content{
    position:relative;
    z-index:2;
    max-width:750px;
    padding:20px;
    animation:fadeUp 1.2s ease forwards;
}

/* SMALL TAG */
.lux-tag{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:var(--gold);
    margin-bottom:15px;
}

/* HEADLINE */
.lux-content h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    font-weight:500;
    line-height:1.2;
    margin-bottom:20px;
}

/* TEXT */
.lux-content p{
    font-size:15px;
    color:#ddd;
    line-height:1.8;
    margin-bottom:25px;
}

/* BUTTONS */
.lux-actions .btn{
    margin:5px;
}

/* SUBTLE GLOW EFFECT */
.lux-intro::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(255,156,0,0.08), transparent 60%);
    pointer-events:none;
}

/* MOBILE */
@media(max-width:768px){

    .lux-intro{
        height:auto;
        padding:80px 20px;
    }

    .lux-content h2{
        font-size:28px;
    }

    .lux-content p{
        font-size:13px;
    }
}

/* INITIAL HIDDEN STATE */
.reveal-item{
    opacity:0;
    transform:translateY(40px);
}

/* WHEN ACTIVE */
.lux-content.active .reveal-item{
    animation:luxFadeUp 1s ease forwards;
}

/* STAGGER DELAYS */
.lux-content.active .reveal-item:nth-child(1){animation-delay:0.3s;}
.lux-content.active .reveal-item:nth-child(2){animation-delay:0.7s;}
.lux-content.active .reveal-item:nth-child(3){animation-delay:1.1s;}
.lux-content.active .reveal-item:nth-child(4){animation-delay:1.5s;}

@keyframes luxFadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* SOFT BACKGROUND ZOOM (BREATHING EFFECT) */
.lux-bg{
    animation:luxZoom 20s ease-in-out infinite alternate;
}

@keyframes luxZoom{
    from{transform:scale(1.05);}
    to{transform:scale(1.12);}
}

/* HEADING WRAPPER */
.lux-heading{
    position:relative;
    display:inline-block;
}

/* GOLD LINE */
.gold-line{
    width:0;
    height:2px;
    background:var(--gold);
    margin:18px auto 0;
    border-radius:2px;
    opacity:0;
}

/* ANIMATION TRIGGER */
.lux-content.active .gold-line{
    animation:goldLineReveal 1.2s ease forwards;
    animation-delay:1s; /* appears after heading */
}


@keyframes goldLineReveal{
    from{
        transform:translateX(-40px);
        opacity:0;
        width:120px;
    }
    to{
        transform:translateX(0);
        opacity:1;
        width:120px;
    }
}

.gold-line{
    height:1px;
    background:linear-gradient(to right, transparent, var(--gold), transparent);
}

/* PREVIEW GRID */
.gallery-preview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:12px;
    margin:30px 0;
}

.gallery-preview img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s ease;
}

.gallery-preview img:hover{
    transform:scale(1.05);
}

.luxury-gallery-preview{
    background:#0a0a0a;
    color:white;
    padding:110px 20px;
}

/* Title */
.lux-title{
    font-family:'Playfair Display',serif;
    font-size:42px;
    letter-spacing:1px;
}

/* Gold animated line */
.gold-line{
    width:80px;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    margin:15px auto 25px;
    position:relative;
    overflow:hidden;
}

.gold-line::after{
    content:"";
    position:absolute;
    width:40%;
    height:100%;
    background:rgba(255,255,255,0.4);
    left:-40%;
    animation:shine 2.5s infinite;
}

@keyframes shine{
    0%{left:-40%;}
    100%{left:120%;}
}

.lux-subtitle{
    color:#bbb;
    max-width:650px;
    margin:auto;
    font-size:15px;
    line-height:1.8;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    position:relative;
    height:220px;
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
    height:460px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
    filter:brightness(1.1);
}

/* CTA */
.gallery-cta{
    text-align:center;
    margin-top:40px;
}

.lux-btn{
    display:inline-block;
    padding:12px 26px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    letter-spacing:1px;
    transition:0.4s;
}

.lux-btn:hover{
    background:var(--gold);
    color:black;
}

/* MOBILE */
@media(max-width:768px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.large{
        grid-column:auto;
        grid-row:auto;
        height:250px;
    }
}

@media(max-width:768px){

    .reveal,
    .slide,
    .conf-card,
    .room{
        animation:none !important;
        transition:none !important;
        transform:none !important;
    }

}

.conf-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.conf-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
    );
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease;
    overflow:hidden;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* DARK OVERLAY */

.slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.slide-content{
    position:relative;
    z-index:2;
}

.conf-booking-options{
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.conf-booking-options a{
    text-decoration: none;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 10px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
    backdrop-filter: blur(6px);
}

.conf-booking-options a:hover{
    background: #c8a96b;
}

.show-booking{
    display: flex;
}