/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f7f7;

    color:#222;

}

/* Container */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

/* Navbar */

header{

    position:fixed;

    width:100%;

    top:0;

    background:#111;

    z-index:1000;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    color:#D4AF37;

    font-weight:bold;

}

nav ul{

    display:flex;

    list-style:none;

}

nav li{

    margin-left:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#D4AF37;

}

/* Hero */

.hero{

    height:100vh;

    background:url("../image/hero1.jpg") center/cover;

    position:relative;

}

.overlay{

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero-content{

    color:white;

}

.hero h1{

    font-size:70px;

}

.hero p{

    margin:25px 0;

    font-size:22px;

}

.btn{

    display:inline-block;

    padding:15px 40px;

    background:#D4AF37;

    color:black;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

}

.btn:hover{

    transform:translateY(-3px);

}

/* Section */

section{

    padding:100px 10%;

    scroll-margin-top:100px;

}

.scroll-anchor{

    display:block;

    height:0;

    visibility:hidden;

    scroll-margin-top:100px;

}

section h2{

    text-align:center;

    margin-bottom:30px;

    font-size:40px;

    color:#D4AF37;

}

/* Footer */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:40px;

}

/* ===================== ABOUT ===================== */

.about{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    padding:100px 10%;

    background:#111;

    color:white;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:15px;

}

.about-content{

    flex:1;

}

.about-content span{

    color:#D4AF37;

    font-weight:600;

    letter-spacing:2px;

}

.about-content h2{

    color:white;

    font-size:42px;

    margin:15px 0;

}

.about-content p{

    line-height:1.8;

    color:#ddd;

}

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;

}

.feature{

    background:#1b1b1b;

    padding:25px;

    border-radius:12px;

    transition:.3s;

}

.feature:hover{

    transform:translateY(-8px);

}

.feature i{

    color:#D4AF37;

    font-size:35px;

    margin-bottom:15px;

}

/* ===================== COUNTER ===================== */

.counter{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    background:#D4AF37;

    padding:60px 10%;

}

.counter-box{

    text-align:center;

}

.counter-box h2{

    font-size:45px;

    color:#111;

}

.counter-box p{

    font-weight:600;

    margin-top:10px;

}
/*================ SERVICES =================*/

.services{

    background:#fafafa;

}

.title{

    text-align:center;

    margin-bottom:60px;

}

.title span{

    color:#D4AF37;

    letter-spacing:2px;

    font-weight:600;

}

.title h2{

    margin-top:10px;

    font-size:40px;

}

.service-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.service-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.service-info{

    padding:25px;

}

.service-info h3{

    margin-bottom:10px;

}

.service-info p{

    color:#666;

    line-height:1.7;

}

.service-info h4{

    margin:20px 0;

    color:#D4AF37;

    font-size:24px;

}

.rating{

    color:orange;

    margin-bottom:20px;

}

.booking-btn{

    display:block;

    text-align:center;

    padding:14px;

    border-radius:8px;

    background:#111;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.booking-btn:hover{

    background:#D4AF37;

    color:#111;

}
/*================ GALLERY =================*/

.gallery{

    background:#111;

    color:white;

}

.gallery .title h2{

    color:white;

}

.gallery .title p{

    color:#bbb;

    margin-top:15px;

}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:50px;

}

.gallery-container img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.4s;

}

.gallery-container img:hover{

    transform:scale(1.05);

    box-shadow:0 10px 30px rgba(212,175,55,.35);

}
/*================ LIGHTBOX =================*/

.lightbox{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox img{

    width:80%;

    max-width:900px;

    border-radius:10px;

}

.lightbox span{

    position:absolute;

    top:30px;

    right:50px;

    color:white;

    font-size:50px;

    cursor:pointer;

}
/*================ TESTIMONIAL =================*/

.testimonial{

    background:#f8f8f8;

}

.testimonial-container{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.testimonial-card{

    width:340px;

    background:white;

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:15px;

}

.stars{

    color:#FFD700;

    margin:15px 0;

}
/*================ MAP =================*/

.maps{

    padding:100px 10%;

    background:white;

}

.maps iframe{

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}
/*================ WHATSAPP =================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 10px 20px rgba(0,0,0,.3);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}
/*================ BACK TO TOP =================*/

#topBtn{

    position:fixed;

    bottom:110px;

    right:30px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:black;

    font-size:20px;

    cursor:pointer;

    display:none;

}
.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

@media(max-width:768px){

    .menu-toggle{

        display:block;

    }

}
header.scrolled{

    background:#000;

    box-shadow:0 5px 15px rgba(0,0,0,.4);

}
.footer-content{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

    text-align:left;

}

footer hr{

    margin:40px 0;

    border:.5px solid #444;

}