@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

h1,h2,h3{
font-family:'Cormorant Garamond',serif;
}

img{
width:100%;
display:block;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
background:rgba(0,0,0,.35);
backdrop-filter:blur(10px);
}

.logo{
font-size:32px;
font-weight:700;
color:#d4af37;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}





.nav-links a{
color:white;
text-decoration:none;
}

.book-btn{
background:#d4af37;
color:black;
padding:12px 25px;
text-decoration:none;
border-radius:30px;
font-weight:600;
}

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

/* HERO */

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

.hero video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-subtitle{
letter-spacing:4px;
color:#d4af37;
}

.hero-content h1{
font-size:6rem;
margin:20px 0;
}

.hero-content p{
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

.primary-btn,
.secondary-btn{
display:inline-block;
padding:15px 35px;
text-decoration:none;
margin:10px;
}

.primary-btn{
background:#d4af37;
color:black;
}

.track-btn{

    display:inline-block;

    padding:15px 35px;

    background:#ffffff;

    color:#b8860b;

    text-decoration:none;

    border:2px solid #b8860b;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

   

}

.track-btn:hover{

    background:#b8860b;

    color:#fff;

}

@media (max-width:768px){
    .logo{
font-size:24px;

}
}

@media (max-width:400px){

    .logo{
        font-size:18px;
    }

}



/* ===========================
   BOOKING SECTION
=========================== */

.booking{
    padding:80px 8%;
    
    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url("../images/reception\ 2\ Medium.jpeg");

    background-size:cover;
    background-position:center;

}

.booking-container{
    max-width:750px;
    margin:auto;
}

/* ===========================
   BOOKING FORM
=========================== */

#bookingForm{
    
    background:#ffffff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

/* ===========================
   TITLES
=========================== */

.booking-title{

    font-size:34px;

    color:#b8860b;

    text-align:center;

    margin-bottom:10px;

}

.booking-subtitle{

    text-align:center;

    color:#777;

    margin-bottom:35px;

    line-height:1.6;

}

/* ===========================
   LABELS
=========================== */

#bookingForm label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:600;

    color:#222;

}

/* ===========================
   INPUTS
=========================== */

#bookingForm input,
#bookingForm select{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    transition:.3s;

    outline:none;

    background:#fff;

}

#bookingForm input:focus,
#bookingForm select:focus{

    border-color:#b8860b;

    box-shadow:0 0 10px rgba(184,134,11,.25);

}

/* ===========================
   BOOKING SUMMARY
=========================== */

.booking-summary{

    margin-top:30px;

    padding:25px;

    border-radius:15px;

    background:#fafafa;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    gap:10px;

}

.booking-summary h3{

    color:#b8860b;

    margin-bottom:10px;

}

.booking-summary h2{

    color:#0b7a3e;

    margin-top:15px;

    font-size:30px;

}

.booking-summary p{

    color:#444;

    line-height:1.6;

}

/* ===========================
   PAYMENT BOX
=========================== */

.payment-box{

    margin-top:30px;

    background:#fffaf0;

    border-left:6px solid #b8860b;

    padding:25px;

    border-radius:15px;

}

.payment-box h3{

    color:#b8860b;

    margin-bottom:15px;

}

.payment-note{

    color:#666;

    margin-bottom:20px;

    line-height:1.6;

}

/* ===========================
   BANK DETAILS
=========================== */

.bank-details{

    background:#fff;

    padding:20px;

    border-radius:12px;

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

    margin-bottom:20px;

}

.bank-details p{

    margin:12px 0;

    font-size:17px;

}

/* ===========================
   TOTAL PAYMENT
=========================== */

.payment-total{

    background:#0b7a3e;

    color:#fff;

    padding:18px;

    border-radius:12px;

    text-align:center;

    margin-bottom:20px;

}

.payment-total h2{

    margin:0;

    font-size:30px;

}

/* ===========================
   HELP TEXT
=========================== */

.payment-help{

    display:block;

    margin-top:10px;

    color:#666;

    font-size:14px;

    line-height:1.6;

}

/* ===========================
   SUCCESS MESSAGE
=========================== */

.success{

    margin-top:25px;

    background:#d4edda;

    color:#155724;

    padding:15px;

    border-radius:10px;

    text-align:center;

    font-weight:bold;

}

/* ===========================
   ERROR MESSAGE
=========================== */

.error{

    margin-top:25px;

    background:#f8d7da;

    color:#721c24;

    padding:15px;

    border-radius:10px;

    text-align:center;

    font-weight:bold;

}

/* ===========================
   BUTTON
=========================== */
#reserveBtn{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

#reserveBtn{

    width:100%;

    margin-top:35px;

    padding:18px;

    border:none;

    border-radius:10px;

    background:#b8860b;

    color:#fff;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

#reserveBtn:hover{

    background:#966b00;

    transform:translateY(-2px);

}

#reserveBtn:disabled{

    background:#999;
    opacity:.8;

    cursor:not-allowed;

    transform:none;

}

.spinner{

    width:18px;

    height:18px;

    border:3px solid rgba(255,255,255,.35);

    border-top:3px solid white;

    border-radius:50%;

    animation:spin .8s linear infinite;

}
@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

#bookingForm{

    padding:30px;

}

.booking-title{

    font-size:30px;

}

.payment-total h2{

    font-size:26px;

}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.booking{

    padding:60px 20px;

}

#bookingForm{

    padding:25px;

}

.booking-title{

    font-size:26px;

}

.booking-subtitle{

    font-size:15px;

}

#bookingForm input,
#bookingForm select{

    font-size:15px;

    padding:14px;

}

.booking-summary{

    padding:20px;

}

.booking-summary h2{

    font-size:24px;

}

.payment-box{

    padding:20px;

}

.payment-total{

    padding:15px;

}

.payment-total h2{

    font-size:24px;

}

.bank-details{

    padding:15px;

}

.bank-details p{

    font-size:15px;

}

#reserveBtn{

    padding:16px;

    font-size:16px;

}

}

/* ===========================
   SMALL PHONES
=========================== */

@media(max-width:480px){

.booking{

    padding:40px 15px;

}

#bookingForm{

    padding:18px;

}

.booking-title{

    font-size:22px;

}

.booking-subtitle{

    font-size:14px;

}

.booking-summary{

    padding:15px;

}

.payment-box{

    padding:15px;

}

.payment-total h2{

    font-size:20px;

}

.bank-details p{

    font-size:14px;

}

#reserveBtn{

    font-size:15px;

    padding:15px;

}

}




/* WELCOME */

.welcome{
padding:120px 8%;

}
.welcome-image{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.welcome-image img{
height:250px;
    object-fit:cover;
}

.container{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
align-items:center;
}

.welcome-content span{
color:#d4af37;
font-weight:600;
}

.welcome-content h2{
font-size:4rem;
margin:20px 0;
}

.welcome-content p{
line-height:1.9;
margin-bottom:30px;

}

.learn-more{
background:#111;
color:white;
padding:15px 30px;
text-decoration:none;
}

/* MOBILE */

/* =========================
TABLET
========================= */

@media (max-width: 992px){

    .room-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .amenity-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-container{
        grid-template-columns:1fr;
    }

    .restaurant-content h2,
    .cta h2{
        font-size:3rem;
    }

    .section-title h2{
        font-size:3rem;
    }

}

/* =========================
MOBILE
========================= */

@media (max-width: 768px){

    /* NAVIGATION */

    .menu-btn{
        display:block;
    }

    .book-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:-100%;
        width:100%;
        background:#111;
        flex-direction:column;
        text-align:center;
        padding:25px;
        transition:.4s;
    }

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

    /* HERO */

    .hero-content{
        width:95%;
    }

    .hero-content h1{
        font-size:2.8rem;
        line-height:1.1;
    }

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

    /* SECTION TITLES */

    .section-title h2{
        font-size:2.2rem;
        line-height:1.2;
    }

    /* WELCOME */

    .container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .welcome-content{
        text-align:center;
    }

    .welcome-content h2{
        font-size:2.5rem;
    }



    /* ROOMS */

    .room-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .room-card{
        width:100%;
    }

    .room-card img{
        height:250px;
    }

    /* AMENITIES */

    .amenity-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .amenity-card{
        padding:30px 20px;
    }

    /* RESTAURANT */

    .restaurant-preview{
        height:auto;
        padding:80px 20px;
    }

    .restaurant-content h2{
        font-size:2.3rem;
        line-height:1.2;
    }

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

.spinner{

display:inline-block;

width:18px;

height:18px;

margin-right:8px;

border:3px solid rgba(255,255,255,.4);

border-top:3px solid #fff;

border-radius:50%;

animation:spin .8s linear infinite;

vertical-align:middle;

}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}
}

    /* TESTIMONIALS */

    .testimonial-container{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:25px;
    }

    /* CTA */

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:2.3rem;
        line-height:1.2;
    }

    

}


/* FEATURED ROOMS */

.featured-rooms{
    padding:120px 8%;
    background:#f8f8f8;
}

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

.section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-size:4rem;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

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

.room-card{
    display: flex;
    flex-direction: column;
    background:white;
    overflow:hidden;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

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

.room-card img{
    height:240px;
    object-fit:cover;
}

.room-info{
    padding:25px;
}

.room-info h3{
    font-size:2rem;
}

.room-info p{
    margin:15px 0;
}

.room-info a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

/* AMENITIES */

.amenities{
    padding:120px 8%;
    background:#111;
    color:white;
}

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

.amenity-card{
    text-align:center;
    padding:40px 25px;
    border:1px solid rgba(255,255,255,.1);
    transition:.4s;
}

.amenity-card:hover{
    border-color:#d4af37;
    transform:translateY(-10px);
}

.amenity-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.amenity-card h3{
    margin-bottom:15px;
}

.amenity-card p{
    margin-bottom:20px;
    line-height:1.7;
}

.amenity-card a{
    color:#d4af37;
    text-decoration:none;
}

/* RESTAURANT */

.restaurant-preview{

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url("../images/restaurant\ 2\ Medium.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap: wrap;
    text-align:center;
    color:white;

    padding:40px;
}

.restaurant-content{
    max-width:800px;
}

.restaurant-content span{
    color:#d4af37;
    letter-spacing:3px;
}

.restaurant-content h2{
    font-size:3rem;
    margin:20px 0; 
}

.restaurant-content p{
    line-height:1.8;
    margin-bottom:30px;
}

/* TESTIMONIALS */

.testimonials{
    padding:120px 8%;
    background:#f8f8f8;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card p{
    line-height:1.8;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-card h4{
    color:#d4af37;
}

/* CTA */

.cta{
    padding:120px 8%;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),
    url("../images/reception1\ Medium.jpeg");

    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;
}

.cta h2{
    font-size:2.3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto auto 30px;
}


/* FOOTER */
.footer{

    background:#0d0d0d;

    padding:70px 8% 25px;

    color:#f5f5f5;

    border-top:1px solid rgba(212,175,55,.2);

}

.footer-grid{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    flex-wrap:wrap;

}

.footer-grid h3{

    color:#d4af37;

    font-size:1.5rem;

    margin-bottom:18px;

    font-weight:600;

    letter-spacing:.5px;

}

.footer-grid p{

    max-width:420px;

    color:#bdbdbd;

    line-height:1.8;

    font-size:.95rem;

}

.follow-us{

    text-align:right;

}

.social-icons{

    display:flex;

    gap:18px;

    list-style:none;

    padding:0;

    margin-top:15px;

    justify-content:flex-end;

}

.social-icons li{

    transition:.35s ease;

}

.social-icons li:hover{

    transform:translateY(-6px);

}

.social-icons a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#171717;

    border:1px solid rgba(212,175,55,.25);

    border-radius:50%;

    transition:.35s ease;

}

.social-icons a:hover{

    background:#d4af37;

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

}

.social-icons img{

    width:22px;

    height:22px;

    transition:.35s ease;

}

.social-icons a:hover img{

    transform:scale(1.1);

    filter:brightness(0);

}

.copyright{

    margin-top:45px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#8b8b8b;

    font-size:.9rem;

    letter-spacing:.3px;

}

/* Tablet */

@media(max-width:768px){

.footer{

padding:60px 6% 20px;

}

.footer-grid{

flex-direction:column;

align-items:center;

text-align:center;

gap:35px;

}

.footer-grid p{

max-width:100%;

}

.follow-us{

text-align:center;

}

.social-icons{

justify-content:center;

}

}

/* Mobile */

@media(max-width:480px){

.footer{

padding:50px 20px;

}

.footer-grid h3{

font-size:1.3rem;

}

.footer-grid p{

font-size:.9rem;

}

.social-icons{

gap:12px;

}

.social-icons a{

width:45px;

height:45px;

}

.social-icons img{

width:20px;

height:20px;

}

.copyright{

font-size:.8rem;

}

}

/* =====================
PAGE HERO
===================== */

.page-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/room\ wardrope\ Medium.jpeg");

    background-size:cover;
    background-position:center;

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

    position:relative;
    text-align:center;
}

.page-content{
    height: 30vh;
    color:white;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.page-content span{
    color:#d4af37;
    letter-spacing:3px;
}

.page-content h1{
    font-size:5rem;
    margin:20px 0;
}

/* =====================
SUITES
===================== */

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

.light{
    background:#f8f8f8;
}

.suite-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.reverse .suite-image{
    order:2;
}

.reverse .suite-content{
    order:1;
}

.suite-image img{
    border-radius:15px;
}

.suite-content h2{
    font-size:3rem;
    margin-bottom:20px;
}

.suite-content p{
    line-height:1.8;
    margin-bottom:25px;
}

.suite-content ul{
    margin-bottom:30px;
}

.suite-content li{
    margin-bottom:15px;
}

.suite-content i{
    color:#d4af37;
    margin-right:10px;
}

.price{
    font-size:2rem;
    font-weight:700;
    color:#d4af37;
    margin-bottom:25px;
}

/* MOBILE */

@media(max-width:768px){
.restaurant-content h2,
.cta h2{
    font-size:2.5rem;
}

.testimonial-container{
    grid-template-columns:1fr;
}

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


    .page-content h1{
        font-size:3rem;
    }

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

    .reverse .suite-image,
    .reverse .suite-content{
        order:unset;
    }

    .suite-content{
        text-align:center;
    }

} 

/* ===================
RESTAURANT PAGE HERO
=================== */

.restaurant-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/restaurant\ 1\ Medium.jpeg");

    background-size:cover;
    background-position:center;

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

    text-align:center;
}

.restaurant-content{
    color: #fafafa;
    text-align:center;
}

.restaurant-about{
    margin-top: 30px;
}

.spinner{

display:inline-block;

width:18px;

height:18px;

margin-right:10px;

border:3px solid rgba(255,255,255,.4);

border-top:3px solid #fff;

border-radius:50%;

animation:spin .8s linear infinite;

vertical-align:middle;

}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

.success{

margin-top:20px;

padding:15px;

background:#d4edda;

color:#155724;

border-radius:8px;

font-weight:bold;

text-align:center;

}

.error{

margin-top:20px;

padding:15px;

background:#f8d7da;

color:#721c24;

border-radius:8px;

font-weight:bold;

text-align:center;

}

/* ===================
DISHES
=================== */


.signature-dishes{
    padding:120px 8%;
    background:#f8f8f8;
}

.dish-grid{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.dish-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dish-card img{
    height:250px;
    object-fit:cover;
}

.dish-card h3{
    padding:20px 20px 10px;
}

.dish-card p{
    padding:0 20px 20px;
    line-height:1.8;
}

/* ===================
CHEF
=================== */

.chef-section{
    padding:120px 8%;
}

/* ===================
RESERVATION
=================== */

.restaurant-booking{
    padding:120px 8%;
    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/restaurant\ 2\ Medium.jpeg");

    background-size:cover;
    background-position:center;
    color:white;
}
.reservation-form{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation-form label{
    font-weight: 600;
    text-align: left;
}

.reservation-form input,
.reservation-form select{
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.reservation-form button{
    width: fit-content;
    min-width: 180px;
    padding: 14px 30px;
    border: none;
    background:#d4af37;
    border-radius: 8px;
    cursor: pointer;
    align-self: center;
}
@media (max-width: 768px){

    .reservation-form{
        width: 90%;
    }

    .reservation-form button{
        width: 100%;
        min-width: unset;
    }

    .restaurant-content{
        color: #fafafa;
        margin-top: 180px;
        align-items: center;
    }


}



/* ===================
SPA HERO
=================== */

.spa-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/thumbnail-1.webp");

    background-size: cover;
    background-position:center 20%;

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

    text-align:center;
}

.spa-hero-content h1{
    color: #fff;
    font-size: 60px;
    margin-bottom: 15px;
}

.spa-hero-content p{
    color: #fff;
    font-size: 20px;
}

/* ===================
SPA INTRO
=================== */

.spa-intro{
    padding:120px 8%;
}

/* ===================
SPA SERVICES
=================== */

.spa-services{
    padding:120px 8%;
    background:#f8f8f8;
}

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

.service-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.service-card h4{
    color:#d4af37;
    margin-top:20px;
}

/* ===================
WELLNESS FEATURES
=================== */

.wellness-features{
    padding:120px 20%;
    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/images.jpeg");

    background-size:cover;
    background-position:center;

    
}
    


.feature-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    color:#111;
    text-align:center;
    padding:40px;
}

.feature-box i{
    font-size:35px;
    color:#d4af37;
    margin-bottom:15px;
}


/* MOBILE */

@media(max-width:768px){
    .feature-grid{
      display: grid;
      grid-template-columns: 2 1fr;
    }
   .service-grid{
   display: flex;
   flex-wrap: wrap;
}

.service-card{

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
}
   
   .wellness-features{
    padding: 5px 1px;
   }
   
}



/* =====================
GALLERY HERO
===================== */

.gallery-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/bar\ 5\ Medium.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* =====================
FILTER
===================== */

.gallery-filter{
    padding:60px 8%;
    text-align:center;
}

.gallery-filter button{
    padding:12px 25px;
    margin:5px;
    border:none;
    background:#f2f2f2;
    cursor:pointer;
}

.gallery-filter .active{
    background:#d4af37;
}

/* =====================
GALLERY GRID
===================== */

.gallery-grid{
    padding:0 8% 120px;

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

    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

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

.gallery-item:hover img{
    transform:scale(1.1);
}

/* =====================
LIGHTBOX
===================== */
/* ===========================
   PREMIUM GALLERY LIGHTBOX
=========================== */

.lightbox{

display:none;

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

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

justify-content:center;

align-items:center;

z-index:99999;

overflow:hidden;

animation:fadeIn .3s;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

.lightbox img{

max-width:90%;

max-height:85%;

border-radius:10px;

box-shadow:0 20px 60px rgba(0,0,0,.5);

animation:zoom .3s;

}

@keyframes zoom{

from{

transform:scale(.85);

opacity:.3;

}

to{

transform:scale(1);

opacity:1;

}

}

.close-lightbox{

position:absolute;

top:25px;

right:35px;

font-size:45px;

color:#fff;

cursor:pointer;

transition:.3s;

}

.close-lightbox:hover{

color:#d4af37;

}

.prev,

.next{

position:absolute;

top:50%;

transform:translateY(-50%);

font-size:65px;

font-weight:bold;

color:white;

cursor:pointer;

padding:20px;

transition:.3s;

user-select:none;

}

.prev{

left:25px;

}

.next{

right:25px;

}

.prev:hover,

.next:hover{

color:#d4af37;

}

.image-counter{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

background:rgba(255,255,255,.15);

padding:10px 20px;

border-radius:40px;

color:white;

font-size:18px;

backdrop-filter:blur(10px);

}

.gallery-item{

overflow:hidden;

}

.gallery-item img{

transition:.4s;

cursor:pointer;

}

.gallery-item:hover img{

transform:scale(1.08);

}

@media(max-width:768px){

.lightbox img{

max-width:96%;

max-height:75%;

}

.prev,

.next{

font-size:40px;

}

.close-lightbox{

font-size:35px;

right:20px;

}

.image-counter{

font-size:15px;

}

}



/* =====================
CONTACT HERO
===================== */

.contact-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/reception\ 2\ Medium.jpeg");

    background-size:cover;
    background-position:center;

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

    text-align:center;
}

/* =====================
CONTACT INFO
===================== */

.contact-info{
    padding:100px 8%;

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

    gap:25px;
}

.info-card{
    text-align:center;
    padding:10px;
    background:#f8f8f8;
    border-radius:15px;
}

.info-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}





/* =====================
CONTACT SECTION
===================== */

.contact-section{
    padding:120px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:60px;
    align-items:center;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

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

.contact-form button{
    background:#d4af37;
    border:none;
    padding:15px;
    cursor:pointer;
    font-weight:600;
}

/* =====================
FAQ
===================== */

.faq{
    padding:120px 8%;
    background:#f8f8f8;
}

.faq-item{
    background:white;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    text-align:left;
    padding:20px;
    border:none;
    cursor:pointer;
    background:white;
    font-size:16px;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding:0 20px 20px;
}

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

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

/* MOBILE */

@media(max-width:768px){

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

}


/* =====================
SCROLL NAVBAR
===================== */

.navbar.scrolled{
    background:rgba(10,10,10,.95);
    padding:15px 8%;
}

/* =====================
ACTIVE NAVIGATION
===================== */

.nav-links a.active{
    color:#d4af37;
}



/* =====================
ANIMATIONS
===================== */

section{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

section.active{
    opacity:1;
    transform:translateY(0);
}


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

.about-hero{
    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("../images/upstairs\ walk\ view\ Medium.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;

    text-align:center;
}

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

.about-story{
    padding:120px 8%;
}

.about-image img{
    border-radius:15px;
}

/* ===================
STATS
=================== */

.hotel-stats{
    background:#111;
    color:white;

    padding:80px 8%;

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

    gap:25px;

    text-align:center;
}

.stat-card h2{
    font-size:3rem;
    color:#d4af37;
}

/* ===================
VALUES
=================== */

.our-values{
    padding:120px 8%;
    background:#f8f8f8;
}

.value-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.value-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.value-card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

@media(max-width: 768px){
    .value-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .value-card{
        padding: 25px;
        text-align: center;}
}

/* ===================
TEAM
=================== */

.leadership{
    padding:120px 8%;
}

.team-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:20px;
}

.team-card{
    text-align:center;
}

.team-card img{
    height:350px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:20px;
}

.team-card h3{
    margin-bottom:10px;
}

/* ===================
MOBILE
=================== */

@media(max-width:768px){

    .hotel-stats{
        grid-template-columns:1fr 1fr;
    }

}

/* =========================
MOBILE FIXES
========================= */

@media screen and (max-width: 768px){

    .room-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .amenity-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .testimonial-container{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .room-card,
    .amenity-card,
    .testimonial-card{
        width:100% !important;
        max-width:100% !important;
    }

    .featured-rooms,
    .amenities,
    .testimonials{
        padding:80px 20px !important;
    }

    .section-title{
        width:100%;
        padding:0 10px;
    }

    .section-title h2{
        font-size:2rem !important;
        line-height:1.2;
    }

    .section-title p{
        width:100%;
        max-width:100%;
    }

}


/* ======================
NAVBAR SCROLL EFFECT
====================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    transition:all .4s ease;
}

.navbar.scrolled{
    background:rgba(10,10,10,.95);
    backdrop-filter:blur(12px);

    padding:15px 8%;

    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

    /* Styles specific to Michael Lawson's section */

.leadership .ceo-info {
    display: flex;
    flex-wrap: wrap;
    object-fit: cover;
    align-items: center;
}

.leadership .ceo-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    margin-top: 20px;
}

/* ===========================
   LEADERSHIP
=========================== */

.leadership{

padding:90px 8%;

background:#faf8f4;

}

.leadership .section-title{

text-align:center;

margin-bottom:60px;

}

.leadership .section-title h2{

font-size:42px;

color:#1d1d1d;

margin-bottom:15px;

}

.leadership .section-title p{

max-width:700px;

margin:auto;

line-height:1.8;

color:#666;

}

.leadership-container{

display:flex;

justify-content:center;

}

.leader-card{

max-width:1100px;

display:grid;

grid-template-columns:380px 1fr;

gap:50px;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

align-items:center;

transition:.4s;

}

.leader-card:hover{

transform:translateY(-8px);

}

.leader-image{

width:100%;

border-radius:18px;

display:block;

transition:.4s;

}

.leader-image:hover{

transform:scale(1.03);

}

.leader-content h3{

font-size:34px;

margin-bottom:10px;

color:#222;

}

.leader-content span{

display:inline-block;

margin-bottom:20px;

color:#b8860b;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

}

.leader-content p{

line-height:1.9;

color:#555;

margin-bottom:35px;

}

.leader-btn{

display:inline-block;

padding:14px 34px;

background:#b8860b;

color:#fff;

text-decoration:none;

border-radius:40px;

transition:.3s;

font-weight:600;

}

.leader-btn:hover{

background:#222;

}

/* Responsive */

@media(max-width:900px){

.leader-card{

grid-template-columns:1fr;

text-align:center;

}

.leader-content{

padding-top:20px;

}

}

@media(max-width:600px){

.leadership{

padding:70px 20px;

}

.leader-card{

padding:25px;

}

.leader-content h3{

font-size:28px;

}

.leadership .section-title h2{

font-size:34px;

}

} 

