html,
body{
    width:100%;
    overflow-x:hidden;
    padding-top:90px;
}

img{
    max-width:100%;
    display:block;
}
/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:95%;
    background:rgba(15,81,50,.95);
    backdrop-filter:blur(10px);
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:10px 4%;
}

.nav-links{
    flex:1;

    display:flex;
    justify-content:center;

    align-items:center;
    gap:20px;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li{
    margin:0;
    padding:0;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.logo{
    flex:0 0 auto;
}

.logo img{
    height:60px;
    width:auto;
    display:block;
}


.book-btn{
    flex:0 0 auto;

    background:#D4AF37;
    color:#fff;
    text-decoration:none;

    padding:10px 18px;
    border-radius:5px;
}

/* HERO */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}


.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide-content h1{
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:20px;
}
@media(max-width:768px){

.slide-content h1{
    font-size:38px;
    z-index:2;
}

}

.welcome-tag{
    display:inline-block;
    padding:10px 20px;
    background:#198754;
    border-radius:30px;
    margin-bottom:20px;
}

.slide-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
}

.slide-content p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slider::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.primary-btn{
    background:#198754;
    color:white;
    padding:15px 35px;
    text-decoration:none;
}

.secondary-btn{
    border:2px solid white;
    color:white;
    padding:15px 35px;
    text-decoration:none;
}

/* FEATURED ROOMS */

.featured-rooms{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}


.section-title h2{
    font-size:48px;
    color:#222;
}

.section-title span{
    color:#D4AF37;
    letter-spacing:2px;
    text-transform:uppercase;
}

.room-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.room-card{
    background:white;
    box-shadow:0 5px 25px rgba(0,0,0,.1);
    overflow:hidden;
    transition:.3s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.room-info{
    padding:25px;
}

/* WHY US */

.why-us{
    background:#f8f9fa;
    padding:100px 8%;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature{
    background:white;
    text-align:center;
    padding:40px;
    border-radius:10px;
}

.feature i{
    font-size:45px;
    color:#198754;
    margin-bottom:20px;
}

.booking-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    margin-top:40px;
}

.booking-details,
.booking-summary-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.booking-details input,
.booking-details select,
.booking-details textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

.booking-room-image{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

.price-highlight{
    color:#198754;
    font-size:22px;
}

.payment-option{
    display:block;
    margin-bottom:15px;
}

.book-now-btn{
    width:100%;
    background:#D4AF37;
    color:white;
    border:none;
    padding:15px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    margin-top:20px;
}

.book-now-btn:hover{
    background:#b8942d;
}

@media(max-width:768px){

    .booking-grid{
        grid-template-columns:1fr;
    }

}
.booking-section{
    padding:80px 0;
}

.booking-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* RESTAURANT */

@media(max-width:768px){

    .restaurant-section{
        grid-template-columns:1fr;
    }

}

.restaurant-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:100px 8%;
}

.restaurant-image img{
    width:100%;
    border-radius:10px;
}

.restaurant-content span{
    color:#198754;
    font-weight:bold;
}

.restaurant-content h2{
    font-size:45px;
    margin:15px 0;
}

/* EVENTS */

@media(max-width:768px){

    .event-grid{
        grid-template-columns:1fr;
    }

}

.events-section{
    padding:100px 8%;
    background:#f8f9fa;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.event-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.event-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}


.event-info{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,.7);
    color:white;
    padding:20px;
}

/* STATS */

@media(max-width:768px){

    .statistics{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

.statistics{
    background:#0F5132;
    color:white;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    padding:80px 8%;
}

.stat-box h2{
    font-size:50px;
}

.payment-card{
    background:#fff;
    padding:30px;
    margin-top:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.payment-details{
    margin-top:20px;
}

.copy-box{
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:20px;
}

.copy-box span{
    background:#f4f4f4;
    padding:12px 20px;
    font-size:20px;
    font-weight:bold;
    border-radius:6px;
}

.copy-box button{
    background:#198754;
    color:white;
    border:none;
    padding:12px 20px;
    cursor:pointer;
    border-radius:6px;
}

/* TESTIMONIALS */

.testimonials{
    padding:100px 8%;
}

.testimonial{
    display:none;
    text-align:center;
    max-width:800px;
    margin:auto;
}

.active-testimonial{
    display:block;
}

.testimonial p{
    font-size:24px;
    line-height:1.8;
}

/* GALLERY */

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

.gallery-preview{
    padding:100px 8%;
    background:#f8f9fa;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    z-index:9999;
    text-decoration:none;
}

.booking-section{
    padding:100px 8%;
}

.booking-container{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    box-shadow:0 5px 30px rgba(0,0,0,.1);
}

.booking-container form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.booking-container input,
.booking-container textarea{
    padding:15px;
    border:1px solid #ddd;
}

.booking-container button{
    background:#198754;
    color:white;
    border:none;
    padding:15px;
    cursor:pointer;
}

.success-page{
    text-align:center;
    padding:120px 8%;
}

.newsletter{
    background:#D4AF37;
    padding:60px 20px;
    text-align:center;
}

.newsletter h2{
    margin-bottom:10px;
}

.newsletter form{
    margin-top:20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.newsletter input{
    width:350px;
    max-width:100%;
    padding:15px;
    border:none;
}

.newsletter button{
    padding:15px 25px;
    border:none;
    background:#0F5132;
    color:white;
    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

}

.footer{
    background:#0F5132;
    color:#fff;
    padding-top:70px;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-column h3{
    margin-bottom:20px;
    color:#D4AF37;
    font-size:22px;
}

.footer-column p{
    line-height:1.8;
    color:#ddd;
}

.footer-logo{
    width:120px;
    margin-bottom:20px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#D4AF37;
    padding-left:5px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#D4AF37;
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
    padding:25px 0;
    color:#ccc;
}

.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        width:100%;
        background:#0F5132;
        gap:18px;

        flex-direction:column;

        display:none;

        padding:20px 0;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
        margin:10px 0;
    }

    .navbar{
        padding:15px 20px;
    }

}

@media(max-width:1100px){

    .nav-links{
        gap:12px;
    }

    .nav-links a{
        font-size:14px;
    }

    .logo img{
        height:50px;
    }

}

@media(max-width:768px){

    .slide-content{
        left:20px;
        right:20px;
        max-width:100%;
    }

    .slide-content h1{
        font-size:36px;
    }

    .slide-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}

/* MOBILE DRAWER */

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:998;
    display:none;
}

.mobile-overlay.active{
    display:block;
}

@media(max-width:768px){

    .nav-links{
        position:fixed;
        top:0;
        right:-320px;
        width:300px;
        height:100vh;
        background:#0F5132;
        z-index:999;
        display:flex;
        flex-direction:column;
        padding-top:100px;
        transition:.4s ease;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        text-align:left;
        width:100%;
        padding-left:20px;
    }

    .nav-links li a{
        display:block;
        padding:15px 0;
    }
}

@media(max-width:768px){

    .hero-slider{
        height:80vh;
    }

    .slide-content{
        text-align:center;
        left:20px;
        right:20px;
    }

    .slide-content h1{
        font-size:32px;
    }

    .slide-content p{
        font-size:15px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .section-title h2{
        font-size:32px;
    }

}

#backToTop{
    position:fixed;
    bottom:100px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:white;
    cursor:pointer;
    display:none;
    z-index:999;
}