
html {
    scroll-behavior: smooth;
}

#home,
#about,
#rooms,
#gallery {
    scroll-margin-top: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background: #f8fafc;
    overflow-x: hidden;
}

:root {
    --gold: #c8a96a;
    --dark: #1e293b;
    --light: #ffffff;
    --soft: #eef5ff;
    --text: #64748b;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

header nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

    header nav a {
        text-decoration: none;
        color: var(--dark);
        font-size: 15px;
        font-weight: 500;
        transition: .3s;
    }

        header nav a:hover {
            color: var(--gold);
        }

.demo-btn {
    margin-left: 20px;
    padding: 12px 25px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
}
.demo-btn1 {
    margin-left: 20px;
    padding: 12px 25px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width:992px) {

    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
    }

        header nav.active {
            display: flex;
        }

        header nav a {
            width: 100%;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

    .demo-btn {
        display: none;
    }
}

@media (max-width:768px) {

    .logo img {
        height: 45px;
    }

    header {
        height: 80px;
    }

        header nav {
            top: 80px;
        }
}

/*header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.logo {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
}

    .logo span {
        color: var(--gold);
    }

header nav {
    margin-left: auto;
}

    header nav a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 14px;
        padding: 6px 10px;
        transition: .3s;
    }

        header nav a:hover {
            color: var(--gold);
        }


.demo-btn {
    padding: 12px 25px;
    background: var(--gold);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
}
*/
/* HERO */
/* ==========================================
   HERO SECTION
========================================== */

.hero {
    min-height: 100vh;
    padding: 130px 5% 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-left {
    flex: 1;
    max-width: 650px;
}

    .hero-left h1 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(42px,4vw,72px);
        line-height: 1.05;
        color: var(--dark);
        margin-bottom: 25px;
    }

        .hero-left h1 span {
            color: var(--gold);
        }

    .hero-left p {
        font-size: 18px;
        line-height: 1.8;
        color: var(--text);
        margin-bottom: 30px;
    }

/* BUTTONS */

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn1,
.btn2 {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}
.btn3 {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
    color:black;
}
.btn4 {
    margin-left: 20px;
    padding: 12px 25px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
}

.btn1 {
    background: var(--gold);
    color: #fff;
}

.btn2 {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

/* STATS */

.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    width: 110px;
    height: 110px;
    background: #fff;
    margin-top: 3px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: grid;
    place-items: center;
    text-align: center;
}

    .stat div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat h3 {
        margin-top: 20px;
        margin-bottom: 4px;
        color: var(--gold);
        font-size: 24px;
        line-height: 1;
    }

    .stat p {
        font-size: 13px;
        color: var(--text);
    }

/* SLIDER */

.hero-right {
    flex: 1;
    max-width: 760px;
    width: 100%;
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 420px;
    max-height: 650px;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .8s ease;
}

    .slide.active {
        opacity: 1;
    }

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1200px) {

    .hero {
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 52px;
    }
}

@media (max-width:992px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .slider {
        min-height: 350px;
        max-height: 500px;
    }
}

@media (max-width:768px) {

    header {
        padding: 15px 20px;
    }

        header nav {
            display: none;
        }

    .hero {
        padding: 110px 20px 40px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn1,
    .btn2 {
        width: 220px;
        text-align: center;
    }

    .stat {
        width: 90px;
        height: 90px;
    }

    .slider {
        min-height: 260px;
        border-radius: 20px;
    }
}

@media (max-width:480px) {

    .hero-left h1 {
        font-size: 32px;
    }

    .slider {
        min-height: 220px;
    }
}


/*////about section*/
section {
    padding: 80px 5%;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .about img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .about h2 {
        font-size: clamp(32px,3vw,48px);
        margin-bottom: 20px;
        color: var(--dark);
    }

    .about p {
        font-size: 17px;
        line-height: 1.9;
    }

/*//for rooms*/
/*.rooms1 {
    background: white;
    padding: 80px 0;
}

.room1-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.room1-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .room1-card:hover {
        transform: translateY(-10px);
    }

    .room1-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

.room1-content {
    padding: 25px;
    text-align: center;
}

    .room1-content h3 {
        color: var(--dark);
        margin-bottom: 15px;
        color: #222;
        font-size: 24px;
    }

    .room1-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.price {
    color: var(--gold);
    font-weight: 700;
    margin-top: 15px;
    font-size: 20px;
}*/



/*.hero {
    min-height: 100vh;
    padding: 120px 7% 40px;
    display: flex;
    align-items: flex-start;*/ /* center ki jagah */
    /*justify-content: space-between;
    gap: 50px;
}

.hero-left {
    flex: 1;
    margin-top: 0;
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

.hero-left h1 {
    font-family: 'Playfair Display',serif;
    font-size: 60px;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 15px;
}

    .hero-left h1 span {
        color: var(--gold);
    }

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn1 {
    padding: 16px 32px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
}

.btn2 {
    padding: 16px 32px;
    background: white;
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}*/

/* STATS */

/*.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .stat h3 {
        margin: 0;
        font-size: 22px;
        color: var(--gold);
    }

    .stat p {
        margin: 5px 0 0 0;
        font-size: 12px;
    }*/

/* SLIDER */

/*.hero-right {
    flex: 1;
    max-width: 750px;
    position: relative;
}

.slider {
    height: 600px;
    width: 100%;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 1s;
}

    .slide.active {
        opacity: 1;
    }*/

/* FLOATING CARD */

/*.floating {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

    .floating h4 {
        color: var(--gold);
    }*/

/* BOOKING BAR */

/*.booking {
    width: 86%;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 25px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

    .booking input,
    .booking select {
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 10px;
    }

    .booking button {
        border: none;
        background: var(--gold);
        color: white;
        border-radius: 10px;
        cursor: pointer;
    }*/

/* FEATURES */

/*.features {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.07);
    transition: .4s;
}

    .card:hover {
        transform: translateY(-10px);
    }

    .card h3 {
        margin-bottom: 15px;
        color: var(--dark);
    }

    .card p {
        color: var(--text);
    }*/

/* RESPONSIVE */

/*@media(max-width: 1000px) {

    .hero {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 45px;
    }

    .booking {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .slider {
        height: 450px;
    }

    nav {
        display: none;
    }
}*/

/* ================= ABOUT ================= */

.welcome-section {
    background: #F3EBDD;
    padding: 80px 0;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

    .about img {
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--shadow);
        height: 450px;
        object-fit: cover;
    }

    .about h2 {
        font-size: 42px;
        margin-bottom: 20px;
        color: var(--dark);
       
    }

    .about p {
        line-height: 1.9;
        margin-bottom: 25px;
        font-size: 17px;
        text-align: justify;
    }











/*
.rooms-home {
    background: #fff;
    padding: 80px 0;
}

.rooms-home-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 0 40px; 
}

.rooms-home-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .rooms-home-card:hover {
        transform: translateY(-10px);
    }

    .rooms-home-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

.rooms-home-content {
    padding: 25px;
    text-align: center;
}

    .rooms-home-content h3 {
        margin-bottom: 15px;
        color: #222;
        font-size: 24px;
    }

    .rooms-home-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.rooms-home-link {
    text-decoration: none;
    color: inherit;
    display: block;
}*/


/* ================= ROOMS ================= */
/* ROOMS SECTION*/ 

.rooms1 {
    background: #fff;
    
}
.room1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}


.room1-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s;
}

    .room1-card:hover {
        transform: translateY(-10px);
    }

    .room1-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
.room1-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.room1-card a {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

    .room1-card a * {
        text-decoration: none !important;
    }

.room1-content {
    padding: 25px;
    text-align: center;
    text-decoration: none;
}

    .room1-content h3 {
        color: var(--dark);
        margin-bottom: 10px;
        font-size: 40px;
        text-align: center;
        text-decoration:none;
    }

     
.room1-content p {
    line-height: 1.8;
    text-align: center;
}
    .room1-content .btn {
        display: inline-block;
        padding: 12px 28px;
        background: #c8a96a;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        transition: .3s;
    }
.price {
    color: var(--gold);
    font-weight: 700;
    margin-top: 15px;
    font-size: 20px;
}
        .room1-content .btn:hover {
            background: #b18f50;
        }

/*/* TABLET */


@media(max-width:992px) {

    .room-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .room-card img {
        height: 280px;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-card img {
        height: 250px;
    }
}

    

   

/* ================= PREMIUM AMENITIES SECTION ================= */

.amenities {
    padding: 90px 7%;
    background: #f4efe7;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
    margin-top: 50px;
}

.facility-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    position: relative;
}

    .facility-card:hover {
        transform: translateY(-10px);
    }

    .facility-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: .5s;
        display: block;
    }

    .facility-card:hover img {
        transform: scale(1.05);
    }

.facility-content {
    padding: 22px;
    text-align: center;
}

    .facility-content i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        background: #c8a96a;
        color: white;
        font-size: 28px;
        border-radius: 50%;
        margin-bottom: 18px;
        box-shadow: 0 8px 20px rgba(200,169,106,.3);
    }

    .facility-content h3 {
        font-size: 24px;
        color: #111827;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .facility-content p {
        font-size: 15px;
        line-height: 1.8;
        color: #6b7280;
    }

/* ================= HOVER GLOW ================= */

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
    transition: .6s;
}

.facility-card:hover::before {
    left: 100%;
}

/* ================= MOBILE ================= */

@media(max-width: 768px) {

    .amenities {
        padding: 70px 5%;
    }

    .facility-grid {
        gap: 20px;
    }

    .facility-card img {
        height: 160px;
    }

    .facility-content {
        padding: 18px;
    }

        .facility-content h3 {
            font-size: 21px;
        }

        .facility-content p {
            font-size: 14px;
        }
}
/* ================= GALLERY ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}

    .gallery-grid img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 18px;
        transition: .4s;
    }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

/* ================= EXPERIENCE SECTION ================= */

.experience-section {
    padding: 100px 7%;
    background: #f7f3ea;
}

.experience-text {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
}

    .experience-text span,
    .section-heading span,
    .left span,
    .testimonial-left span {
        color: #b8945f;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 600;
    }

    .experience-text h2,
    .section-heading h2,
    .left h2,
    .testimonial-left h2 {
        font-size: 52px;
        font-weight: 300;
        color: #6d746d;
        line-height: 1.2;
        margin: 18px 0;
    }

    .experience-text p,
    .section-heading p,
    .right p,
    .testimonial-left p {
        font-size: 18px;
        line-height: 1.9;
        color: #6b7280;
    }

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.exp-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    transition: .5s;
}

    .exp-card img:hover {
        transform: scale(1.03);
    }

/* ================= LUXURY AMENITIES ================= */

.luxury-amenities {
    padding: 100px 7%;
    background: white;
}

.section-heading {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.amenity-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

    .amenity-box img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: .5s;
    }

    .amenity-box:hover img {
        transform: scale(1.06);
    }

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent,rgba(0,0,0,.7));
}

    .overlay h3 {
        color: white;
        font-size: 28px;
    }
/* ================= SHOWCASE ================= */
.image-showcase {
    padding: 100px 7%;
    background: #f8f5ef;
}

.showcase-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.left {
    flex: 1;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-btn {
    display: inline-block;
    margin-top: 25px;
    background: #d6a84f;
    padding: 14px 35px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    width: max-content;
    transition: .3s;
}

    .gallery-btn:hover {
        background: #b8862c;
    }

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.show-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    transition: .4s;
}

    .show-card img:hover {
        transform: translateY(-8px);
    }

/* ================= TESTIMONIAL ================= */

.testimonial-section {
    padding: 100px 7%;
    background: white;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.testimonial-left h2 {
    max-width: 500px;
}

.testimonial-left p {
    margin: 35px 0;
    font-style: italic;
    font-size: 22px;
    line-height: 1.8;
}

.guest {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .guest i {
        font-size: 55px;
        color: #111827;
    }

    .guest h4 {
        font-size: 24px;
        font-weight: 500;
        color: #374151;
    }

.testimonial-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

    .testimonial-right img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 22px;
    }
/* ================= FOOTER ================= */

footer {
    background: #111827;
    color: #d1d5db;
    padding: 70px 7% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

    .footer-grid h3 {
        color: white;
        margin-bottom: 20px;
    }

    .footer-grid a {
        display: block;
        color: #d1d5db;
        margin-bottom: 12px;
        transition: .3s;
    }

        .footer-grid a:hover {
            color: var(--gold);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
}

/* ================= MOBILE ================= */

@media(max-width: 900px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .experience-text h2,
    .section-heading h2,
    .left h2,
    .testimonial-left h2 {
        font-size: 34px;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
    }

    .testimonial-right {
        grid-template-columns: 1fr;
    }

        .gallery-grid img,
        .exp-card img,
        .show-card img,
        .testimonial-right img,
        .amenity-box img {
            height: 220px;
        }

    .about img {
        height: 320px;
    }

    section {
        padding: 70px 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

```
/* ================= CONTACT ================= */
.contact-section {
    padding: 100px 7%;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-box {
    background: #f8f5ef;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .contact-box:hover {
        transform: translateY(-8px);
    }

    .contact-box i {
        font-size: 40px;
        color: #c8a96a;
        margin-bottom: 20px;
    }

    .contact-box h3 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 24px;
    }

    .contact-box p {
        font-size: 16px;
        line-height: 1.8;
    }

.section-title {
    text-align: center;
    margin: 80px 0 50px 0;
}

    .section-title h4 {
        color: var(--gold);
        letter-spacing: 3px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 42px;
        color: var(--dark);
    }

#about,
#rooms,
#gallery {
    scroll-margin-top: 120px;
}
/* ================= BOOK DEMO SECTION ================= */

#contact {
    padding: 120px 7%;
    background: #f8f5ef;
}

.book-demo-title {
    text-align: center;
    margin-bottom: 50px;
}

    .book-demo-title span {
        color: #c8a96a;
        font-size: 14px;
        letter-spacing: 4px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .book-demo-title h2 {
        font-family: 'Playfair Display',serif;
        font-size: 52px;
        color: #1e293b;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .book-demo-title p {
        color: #64748b;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }

#demoForm {
    max-width: 700px;
    margin: 50px auto 0;
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

    #demoForm input,
    #demoForm textarea {
        width: 100%;
        padding: 18px 20px;
        margin-bottom: 18px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        font-size: 15px;
        outline: none;
        transition: .3s;
    }
        #demoForm input:focus,
        #demoForm textarea:focus {
            border-color: #d4af37;
            box-shadow: 0 0 15px rgba(212,175,55,.25);
        }

    #demoForm textarea {
        height: 150px;
        resize: none;
    }

    #demoForm button {
        display: block;
        margin: 20px auto 0;
        padding: 16px 40px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(135deg,#d4af37,#b8860b);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
    }

        #demoForm button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(212,175,55,.35);
        }

@media(max-width: 768px) {

    #contact {
        padding: 80px 5%;
    }

    .book-demo-title h2 {
        font-size: 36px;
    }

    #demoForm {
        padding: 25px;
    }
}



/* ================= RESTAURANT SECTION ================= */
.restaurant-section {
    padding: 100px 7%;
    background: #f8f5ef;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .restaurant-grid img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

.restaurant-content span {
    color: #c8a96a;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
}

.restaurant-content h2 {
    font-size: 48px;
    color: #1e293b;
    margin: 15px 0 20px;
    font-family: 'Playfair Display',serif;
}

.restaurant-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 15px;
}

.restaurant-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #c8a96a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .restaurant-btn:hover {
        background: #b58d43;
        transform: translateY(-3px);
    }

/* ===== HIGHLIGHTS ===== */

.restaurant-highlights {
    margin-top: 90px;
}

    .restaurant-highlights h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 40px;
        color: #1e293b;
        font-family: 'Playfair Display',serif;
    }

.highlights {
    margin-left: 60px;
    margin-right: 60px;
}

.restaurant-images {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

    .restaurant-images img {
        width: 50%;
        height: 180px;
        object-fit: cover;
        border-radius: 20px;
        transition: .4s;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

        .restaurant-images img:hover {
            transform: translateY(-8px);
        }

/* ===== FEATURE CARDS ===== */


.restaurant-features-section {
    margin-top: 90px;
}

    .restaurant-features-section h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 40px;
        color: #1e293b;
        font-family: 'Playfair Display',serif;
    }

.restaurant-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.restaurant-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .restaurant-card:hover {
        transform: translateY(-10px);
    }

    .restaurant-card i {
        font-size: 38px;
        color: #c8a96a;
        margin-bottom: 15px;
    }

    .restaurant-card h3 {
        color: #1e293b;
        margin-bottom: 12px;
    }

    .restaurant-card p {
        color: #64748b;
        line-height: 1.8;
    }

.restaurant-link {
    display: block;
}

    .restaurant-link img {
        width: 100%;
        transition: .4s;
    }

    .restaurant-link:hover img {
        transform: scale(1.03);
    }

.highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

    .highlights img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

.dish-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.dish-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    text-align: center;
}

    .dish-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .dish-card h3 {
        padding: 15px;
        font-size: 18px;
        color: #1e293b;
    }


/* ================= BANQUET SECTION ================= */

.banquet-section {
    padding: 100px 8%;
    background: #ffffff;
}

.banquet-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.banquet-image {
    flex: 1;
    display: block;
}

    .banquet-image img {
        width: 100%;
        height: 550px;
        border-radius: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transition: 0.4s;
        cursor: pointer;
    }

        .banquet-image img:hover {
            transform: scale(1.03);
        }

.banquet-content {
    flex: 1;
}

    .banquet-content span {
        color: #c9a45d;
        font-size: 18px;
        letter-spacing: 4px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: justify;
    }

    .banquet-content h2 {
        font-size: 58px;
        line-height: 1.2;
        color: #1f2a44;
        margin: 20px 0;
        font-family: 'Playfair Display', serif;
        text-align: justify;
    }

    .banquet-content p {
        font-size: 20px;
        line-height: 1.9;
        color: #6b7280;
        margin-bottom: 20px;
        text-align: justify;
    }

.banquet-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 16px 35px;
    background: #c9a45d;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

    .banquet-btn:hover {
        background: #b89149;
    }

@media(max-width: 991px) {
    .banquet-grid {
        flex-direction: column;
    }

    .banquet-content h2 {
        font-size: 40px;
    }
}
/* ===== MOBILE ===== */

@media(max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }

        .restaurant-grid img {
            height: 320px;
        }

    .restaurant-content h2 {
        font-size: 34px;
    }

    .restaurant-images {
        grid-template-columns: 1fr;
    }

    .restaurant-cards {
        grid-template-columns: 1fr;
    }

    .restaurant-images img {
        height: 220px;
    }
}



/* CONTAINER  */

.restaurant-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
   
        
/* ABOUT */

.restaurant-about {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align:justify;
}

    .restaurant-about img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 20px;
    }

    .restaurant-about h2 {
        font-size: 50px;
        line-height: 1.2;
    }

    .restaurant-about p {
        text-align: justify;
        line-height: 1.9;
    }
    .restaurant-about .section-title {
        margin-top: -10px;
    }
/* SECTION TITLE */

.section-title span {
    color: #c8a96a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* GALLERY */

.highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

    .highlights img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        transition: .4s;
    }

        .highlights img:hover {
            transform: translateY(-8px);
        }


.restaurant-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}
   
/* MAKE ALL CARDS SAME */
.restaurant-card,
.card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    /* TEXT BALANCE */
    .restaurant-card p,
    .card p {
        color: #666;
        line-height: 1.8;
        text-align: justify;
        flex-grow: 1;
    }

    /* HOVER FIX */
    .restaurant-card:hover,
    .card:hover {
        transform: translateY(-8px);
    }



/* DISHES */

.dish-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 30px;
}

.dish-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .dish-card:hover {
        transform: translateY(-8px);
    }

    .dish-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .dish-card h3 {
        padding: 15px;
        color: #c8a96a;
        font-size: 18px;
    }

/* TESTIMONIALS */

.restaurant-container:has(.restaurant-features) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    box-sizing: border-box;
}
/* RESPONSIVE */

@media(max-width:992px) {

    .restaurant-about {
        grid-template-columns: 1fr;
    }

    .restaurant-features {
        grid-template-columns: repeat(2,1fr);
    }

    .dish-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .highlights {
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .restaurant-features,
    .dish-grid,
    .highlights {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
}




/* CONTAINER */

.banquet-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
   
}

/* ABOUT SECTION */

.grid {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

    .grid img {
       
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .grid p {
        line-height: 1.9;
        color: #666;
        text-align:justify;
    }

/* FEATURES */

.banquet-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 30px;
}

/* CARD */

.card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .card:hover {
        transform: translateY(-8px);
    }

    .card h3 {
        color: #c8a96a;
        margin-bottom: 10px;
    }

    .card p {
        color: #666;
        line-height: 1.8;
    }

    /* CARD IMAGE */

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

/* STATS */

.banquet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

    .banquet-stats .stat {
        background: #fff;
        padding: 30px 20px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        width: 100%;
        min-height: 170px;
    }

        .banquet-stats .stat h3 {
            font-size: 42px;
            font-family: 'Playfair Display', serif;
            color: #c8a96a;
            margin-bottom: 10px;
            line-height: 1;
        }

        .banquet-stats .stat p {
            font-size: 16px;
            color: #666;
            margin: 0;
        }

/* EVENTS */

.events {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .event-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .event-card h3 {
        padding: 15px;
        text-align: center;
        color: #c8a96a;
    }

/* SECTION SPACING */

.banquet-container + .banquet-container {
    padding-top: 20px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .grid {
        grid-template-columns: 1fr;
    }

    .banquet-features {
        grid-template-columns: repeat(2,1fr);
    }

    .events {
        grid-template-columns: repeat(2,1fr);
    }

    .banquet-stats {
        grid-template-columns: repeat(2,1fr);
    }

    h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .banquet-features,
    .events,
    .banquet-stats {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }
}












body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f5ef;
    color: #222;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 120px 0 80px;
}

/* HEADER */

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

    .contact-header span,
    .form-heading span {
        color: #c8a96a;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 600;
    }

    .contact-header h2,
    .form-heading h2 {
        margin: 15px 0;
        font-size: 42px;
    }

    .contact-header p {
        max-width: 800px;
        margin: auto;
        line-height: 1.9;
        color: #666;
    }

/* CARDS */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    text-align: justify;
}

.card {
    width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
   
}
.address-card p {
    text-align: justify;
}
    .card:hover {
        transform: translateY(-8px);
        text-align:justify;
    }

    .card h3 {
        color: #c8a96a;
        margin-bottom: 15px;
        text-align: justify;
    }

    .card p {
        line-height: 1.8;
        color: #666;
        text-align: justify;
    }

/* MAP */

.contact-map {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 80px;
}

    .contact-map iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

/* FORM */

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: #c8a96a;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}

    .contact-form button:hover {
        background: #b18f50;
    }

/* RESPONSIVE */

@media(max-width:768px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h2,
    .form-heading h2 {
        font-size: 32px;
    }

    .contact-map iframe {
        height: 350px;
    }
}



















.rooms-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 120px 0;
}

.tag {
    text-align: center;
    color: #c8a96a;
    letter-spacing: 3px;
    font-weight: 600;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: #666;
    line-height: 1.8;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.reverse .room-image {
    order: 2;
}

.reverse .room-content {
    order: 1;
}

.room-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.room-tag {
    color: #c8a96a;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.room-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.room-content p {
    color: #666;
    line-height: 1.9;
}

.room-content ul {
    padding: 0;
    list-style: none;
    margin: 25px 0;
}

    .room-content ul li {
        margin-bottom: 12px;
        color: #444;
    }

.btn {
    display: inline-block;
    text-decoration: none;
    background: #c8a96a;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    transition: .3s;
}

    .btn:hover {
        background: #b18f50;
    }

@media(max-width:992px) {

    .room-card {
        grid-template-columns: 1fr;
    }

    .reverse .room-image,
    .reverse .room-content {
        order: unset;
    }

    .room-image img {
        height: 350px;
    }
}












.aboutpage-hero {
    height: 70vh;
    background: url('/images/banner/header4.jpg') center/cover;
    position: relative;
}

.aboutpage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .aboutpage-overlay h1 {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .aboutpage-overlay p {
        font-size: 20px;
        letter-spacing: 2px;
    }

.aboutpage-intro {
    padding: 90px 8%;
}

.aboutpage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.aboutpage-image img {
    width: 100%;
    border-radius: 20px;
}

.aboutpage-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
}

.aboutpage-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.aboutpage-facilities {
    padding: 80px 8%;
    background: #f8f8f8;
}

.aboutpage-title {
    text-align: center;
    margin-bottom: 50px;
}

    .aboutpage-title h2 {
        font-size: 42px;
        color: #1e293b;
    }

.aboutpage-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.aboutpage-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .4s;
}

    .aboutpage-card:hover {
        transform: translateY(-8px);
    }

    .aboutpage-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .aboutpage-card h3 {
        text-align: center;
        padding: 20px;
    }

.aboutpage-story {
    padding: 90px 8%;
}

.aboutpage-story-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    text-align: justify;
}

    .aboutpage-story-content h2 {
        font-size: 42px;
        margin-bottom: 20px;
        text-align:justify;
    }

    .aboutpage-story-content p {
        line-height: 1.9;
        color: #666;
        text-align: justify;
    }

.aboutpage-gallery {
    padding: 80px 8%;
    background: #f8f8f8;
}

.aboutpage-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}

    .aboutpage-gallery-grid img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 15px;
        transition: .4s;
    }

        .aboutpage-gallery-grid img:hover {
            transform: scale(1.05);
        }

@media(max-width:768px) {

    ```
    .aboutpage-container {
        grid-template-columns: 1fr;
    }

    .aboutpage-overlay h1 {
        font-size: 38px;
    }

    .aboutpage-content h2,
    .aboutpage-title h2,
    .aboutpage-story-content h2 {
        font-size: 30px;
    }

    ```
}















/* HERO */

.gallerypage-hero {
    height: 70vh;
    background: url('/Images/banner/header4.jpg') center/cover;
    position: relative;
}

.gallerypage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

    .gallerypage-overlay h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .gallerypage-overlay p {
        font-size: 20px;
        letter-spacing: 2px;
    }

/* INTRO */

.gallerypage-intro {
    padding: 90px 8%;
}

.gallerypage-title {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

    .gallerypage-title span {
        color: #c8a96a;
        letter-spacing: 3px;
        font-weight: 600;
    }

    .gallerypage-title h2 {
        font-size: 48px;
        margin: 20px 0;
        color: #1e293b;
    }

    .gallerypage-title p {
        line-height: 1.9;
        color: #666;
    }

/* SECTION */

.gallerypage-section {
    
    padding: 120px 8% 80px;
}

    .gallerypage-section h2 {
        text-align: center;
        margin-bottom: 40px;
        color: #1e293b;
        font-size: 42px;
    }

.bg-light {
    background: #f8f5ef;
}

/* GRID */

.gallerypage-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

    .gallerypage-grid img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        transition: .4s;
    }

        .gallerypage-grid img:hover {
            transform: scale(1.05);
        }

/* MOBILE */

@media(max-width:992px) {

    .gallerypage-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gallerypage-overlay h1 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .gallerypage-grid {
        grid-template-columns: 1fr;
    }

    .gallerypage-overlay h1 {
        font-size: 32px;
    }

    .gallerypage-section h2 {
        font-size: 28px;
    }
}















/* HERO SECTION */
.deluxe-hero {
    position: relative;
    height: 70vh;
}

    .deluxe-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.deluxe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .deluxe-overlay h1 {
        font-size: 55px;
    }

    .deluxe-overlay p {
        font-size: 20px;
    }

/* MAIN CONTAINER */
.deluxe-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
}

    .deluxe-container h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 20px;
    }

.deluxe-intro {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 50px;
    color: #555;
}

/* GRID BOX */
.deluxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.deluxe-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .deluxe-box:hover {
        transform: translateY(-5px);
    }

/* WHY SECTION */
.deluxe-why {
    margin-top: 60px;
}

    .deluxe-why ul {
        margin-top: 20px;
        line-height: 2;
    }

/* BOOK SECTION */
.deluxe-book {
    margin-top: 60px;
    text-align: center;
    padding: 60px;
    background: #f8f5ef;
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c8a96a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}
.deluxe-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 60px;
}

    .deluxe-gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

        .deluxe-gallery img:hover {
            transform: scale(1.05);
        }













/* ================= SUPER DELUXE HERO ================= */
.super_deluxe-hero {
    position: relative;
    height: 70vh;
}

    .super_deluxe-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.super_deluxe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .super_deluxe-overlay h1 {
        font-size: 55px;
    }

    .super_deluxe-overlay p {
        font-size: 20px;
    }

/* ================= CONTAINER ================= */
.super_deluxe-container {
    max-width: 1200px;
    margin: auto;
    padding: 120px 40px 80px;
}

    .super_deluxe-container h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 20px;
    }

/* ================= INTRO ================= */
.super_deluxe-intro {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 50px;
    color: #555;
}

/* ================= GALLERY ================= */
.super_deluxe-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

    .super_deluxe-gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

        .super_deluxe-gallery img:hover {
            transform: scale(1.05);
        }

/* ================= FEATURES ================= */
.super_deluxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.super_deluxe-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .super_deluxe-box:hover {
        transform: translateY(-5px);
    }

/* ================= BOOK ================= */
.super_deluxe-book {
    margin-top: 60px;
    text-align: center;
    padding: 60px;
    background: #f8f5ef;
    border-radius: 20px;
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c8a96a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}

    .btn:hover {
        background: #a8894f;
    }













/* ================= FAMILY SUITE HERO ================= */
.family_suite-hero {
    position: relative;
    height: 70vh;
}

    .family_suite-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.family_suite-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .family_suite-overlay h1 {
        font-size: 55px;
    }

    .family_suite-overlay p {
        font-size: 20px;
    }

/* ================= CONTAINER ================= */
.family_suite-container {
    max-width: 1200px;
    margin: auto;
    padding: 120px 40px 80px;
}

    .family_suite-container h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 20px;
    }

/* ================= INTRO ================= */
.family_suite-intro {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 50px;
    color: #555;
}

/* ================= GALLERY ================= */
.family_suite-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

    .family_suite-gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

        .family_suite-gallery img:hover {
            transform: scale(1.05);
        }

/* ================= GRID ================= */
.family_suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.family_suite-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .family_suite-box:hover {
        transform: translateY(-5px);
    }

/* ================= BOOK ================= */
.family_suite-book {
    margin-top: 60px;
    text-align: center;
    padding: 60px;
    background: #f8f5ef;
    border-radius: 20px;
}