@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

html, body {
    margin:  0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color:#f5f1ee ;
}

.features-section {
    position: relative;
    margin-top: -8vh; /* adjust this value to control vertical overlap */
    z-index: 3;
    overflow: visible; /* ensure scrap image overflow is visible */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}
.fs40{
    font-size:40px;
}
/* Hero Section */

/* Hero background and overlay */
.hero-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* background: url('/assets/img/Frame-8.png') center center/cover no-repeat; */
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    pointer-events: none;
    z-index: 2;
}

/* Header & Navigation */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0; 
    left: 0;
    padding: 10px 50px;
    z-index: 978;
    box-sizing: border-box;
}





.logo img {
    width: 100%;
    height: 60px;
    padding-left: 18px;
}

.navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}
.navigation a {
    color: #fff;
    font-family:'Mulish';
    font-size: 16px;
    text-decoration: none;
    /* font-size: 1.2rem; */
    transition: color 0.2s;
}
.navigation a:hover {
    color: #fff;
}
.book-btn {
    background: #ffa726;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 12px;
    transition: background 0.2s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.09);
}
.book-btn:hover {
    background: #fb8c00;
}

/* Hamburger for navigation (hidden by default) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFA726;
    cursor: pointer;
    margin-left: 10px;
}

/* Coming soon hero content */
.comming-soon {
    position: absolute;
    top: 40%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 100%;
}
.comming-soon h2 {
    font-family: 'Philosopher';
    font-size: 36px;
    /* font-size: 2.2rem; */
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px #0008;
}
.comming-soon h3 {
    font-family:'Philosopher';
    font-size: 50px;
    /* font-size: 3rem; */
    font-weight: 400;
    margin-bottom: 0.7rem;
    color: #fff;
    text-shadow: 0 2px 10px #000a, 0 1px 0 #ffc753;
}
.comming-soon p {
    margin: auto;
    width: 100%;
    font-family: 'Mulish';
    font-size: 18px;
    /* font-size: 1.15rem; */
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 6px #0007;
}
.bookvenue-btn {
    background: #ffa726;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 16px;
    font-family: 'Mulish';
    font-weight: bold;
    width: max-content;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.09);
}
.bookvenue-btn:hover {
    background: #fb8c00;
}

.facility-card img:hover{
        filter: brightness(1);
}
/* Scrap Separator Image */
.hero-bottom-shape {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

/* RESPONSIVE HEADER AND NAVIGATION TOGGLE */
@media (max-width: 767px) {
    .hero-bg {
        height: 100vh;
        min-height: 240px;
    }
    .logo img {
        height: 42px;
        padding-left: 6px;
    }
    header {
        padding: 10px 5px;
    }
    /* Hide navigation, show hamburger by default */
    .navigation {
        display: none;
        flex-direction: column;
        gap: 18px;
        position: absolute;
        top: 65px;
        right: 10px;
        border-radius: 16px;
        padding: 18px 8px;
        background:white;
        box-shadow: 0 2px 18px rgba(0,0,0,.12);
        z-index: 22;
    }
    .navigation.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .navigation a {
        color:#867a6d;
    }
}


.hero-bottom-shape {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}
/* Feature Section */
    /* .features-section {
    margin-top: -8vh;
    background: url('/assets/img/Frame-91.png') center bottom/cover no-repeat;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    z-index: 3;
    position: relative;
    overflow: visible;
} */



/* Scrap separator image styling */
.features-scrap-shape {
    position: absolute;
    top: -11vh; /* Adjust to properly overlap the herooo section */
    left: 0;
    width: 100%;
    height: 40vh;
    z-index: 5; /* higher than .features-section for overlap */
    pointer-events: none; /* so it won't block clicks */
}

/* Ensure herooo stays behind */
.herooo {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.features-section .container {
    position: relative;
    z-index: 9;
    overflow: visible;
}

    .feature-card {
    background: transparent;
    border-radius: 12px;
    padding: 10px 10px 0 10px;
    }
    .feature-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    background: linear-gradient(135deg, #F2E0C6 50%,#ffffff00 50%);
    border-radius: 50%;
    }
    .feature-title {
    font-family: 'Philosopher';
    font-size: 22px;
    font-weight: 700;
    color: #46331a;
    margin-bottom: 0.35em;
    }
    .feature-desc {
    font-family: 'Mulish';
    font-weight: 400;
    font-size: 16px;
    color: #7b6650;
    margin-bottom: 0.1em;
    }

    @media (max-width: 767px) {
    .feature-title {
        font-size: 1.05rem;
    }
    .feature-desc {
        font-size: 0.95rem;
    }
    .feature-icon {
        width: 58px;
        height: 58px;
    }
    .features-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

/* Carousel Title */
.carousel-title h2{
    font-weight: 700;
    margin-bottom:50px;
}
.text-red {
    color: #5C4238;
}

.text-blue {
    color: #F0B150; 
}
.carousel-section{
    margin-top:50px;
    margin-bottom:50px;
    font-family:'Philosopher';
    font-size: 22px;
    position: relative;
    /*z-index: 10;*/
    z-index:-2;
    overflow: visible;
}
/* /////////////Celebration Section//////////////////// */

    .celebration-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 50px;
    min-height: 580px;
    }

    .celebration-content {
    max-width: 36%;
    }

    .celebration-content h1 {
    font-family: 'Philosopher';
    font-size: 40px;
    font-weight: bold;
    line-height: 1.15;
    color: #594134;
    margin-bottom: 15px;
    }
    .celebration-content p {
    font-family: 'Mulish';
    font-weight: normal;
    font-size: 16px;
    color: #867a6d;
    margin: 0 0 16px 0;
    }
    .button-row {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 28px;
    }

    .book-btn {
    background: #f9a825;
    color: #fff;
    border-radius: 20px;
    padding: 13px 36px;
    box-shadow: 0 3px 10px #f9a82555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 28px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
    }
    .book-btn:hover {
    background: #d18d15;
    }

    .phone {
    font-family: 'Mulish';
    font-weight: medium;
    font-size: 20px;
    color: #594134;
    display: flex;
    align-items: center;
    margin-left:40px;
    }

    .phone-icon {
    font-size: 1.22rem;
    margin-right: 7px;
    }

    .celebration-images {
    display: flex;
    gap: 28px;
    }

    .left-images {
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 34px;    
    }

    .top-img, .bottom-img {
    width: 294px;
    height: 196px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;    
}

    .big-img {
    width: 332px;
    height: 469px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }

    @media (max-width: 1100px) {
    .celebration-section {
        flex-direction: column;
        padding: 35px 12px;
    }
    .celebration-content {
        max-width: 100%;
        margin-bottom: 32px;
    }
    .celebration-images {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .left-images {
        flex-direction: row;
        gap: 18px;
    }
    .top-img, .bottom-img, .big-img {
        width: 180px !important;
        height: 140px !important;
    }
    .big-img {
        width: 220px !important;
        height: 240px !important;
    }
    }
/*Floating Marquee Section */
    .marquee-section {
    width: 100%;
    overflow: hidden;
    background: none;
    padding: 14px 0;
    }

    .marquee-content {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    font-family: 'Mulish';
    font-size: 32px;
    font-weight: medium;
    color: #574234;
    letter-spacing: 1px;
    align-items: center;
    animation: marqueeScroll 15s linear infinite;
    }

    .dot {
    color: #80695a;
    margin: 0 15px;
    font-size: 1.7rem;
    vertical-align: middle;
    font-weight: 700;
    }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Timer Section */
    .timeline-section {
    margin-top: 60px    ;
    position: relative;
    min-height: 600px;
    height: auto;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    }
    .timeline-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* background: url('/assets/img/Pool_Image.webp') center center/cover no-repeat; */
    background: url('/assets/img/house.webp') center center/cover no-repeat;
    z-index: 0;
    }
    .timeline-card {
    border: 0.001px solid rgba(255, 255, 255, 0.585);
    position: relative;
    margin-left: 150px;
    max-width: 628px;
    min-width: 340px;
    padding: 48px 0 36px 0;
    border-radius: 32px;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 44px rgba(72,62,43,0.15);
    backdrop-filter: blur(17px);
    z-index: 0;
    text-align: center;
    }
    .timeline-title {
    font-family: 'Philosopher';
    font-size: 24px;
    font-weight:normal;
    color: #fff;
    /* margin-bottom: 16px; */
    letter-spacing: 0.01em;
    }
    .timeline-subtitle {
    font-family: 'Philosopher';
    font-size: 40px;
    font-weight: normal;
    color: #fff;
    /* margin-bottom: 38px; */
    letter-spacing: 0.03em;
    }
    .timeline-timer-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 30px;
    }
    .timeline-timer-unit {
    display: flex;
    align-items: center;
    gap: 10px;
    }
    .timeline-num {
    font-size: 64px;
    color: #fff;
    font-family: 'Trocchi';
    font-weight: normal;
    min-width: 44px;
    text-align: center;
    letter-spacing: 0.06em;
    display: inline-block;
    }
    .timeline-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 3px solid #dedcdc;
    border-radius: 50%;
    background: transparent;
    margin: 0 9px;
    vertical-align: middle;
    }
    .timeline-timer-labels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 85px;
    color: #fff;
    font-size: 1.28rem;
    margin-bottom: 10px;
    opacity: 0.93;
    font-weight: 400;
    }
@media (max-width: 830px) {
    .timeline-card { max-width: 99vw;margin: 20px; }
    .timeline-timer-row { gap: 18px; }
    .timeline-timer-labels { gap: 32px; font-size: 1.09rem; }
    .timeline-num { font-size: 1.48rem; min-width: 28px;}
}


/* Facilities Section  */

    .facilities-title {
    height: 15vh;
    font-size: 40px;
    color: #5C4238;
    font-family: 'Philosopher';
    font-weight: regular;
    margin-bottom: 7px;
    }
    .facilities-subtitle {
    font-size: 1.15rem;
    color: #a98a68;
    }
    .facility-card {
    position: relative;
    background: #f7f3ed;
    border-radius: 20px;
    margin-bottom:10px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(90,66,32,0.13);
    /* min-height: 210px; */
    max-width: 384px;
    max-height: 483px;
    aspect-ratio: 1/1.2;
    display: flex;
    align-items: flex-end;
    transition: transform 0.16s cubic-bezier(.54,.12,.63,.94);
    }
    .facility-card:hover {
    transform: scale(1.035) ;
    box-shadow: 0 12px 32px rgba(90,66,32,0.17);
    }
    .facility-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: brightness(0.9) saturate(1.08);
    }
    .facility-label {
    position: absolute;
    bottom: 10px;
    display:block;
    width:100%;
    text-align: center;
    font-family:'Philosopher';
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    border-radius: 14px;
    padding: 5px;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 9px rgba(84,54,23,0.23);
    }
    
    /*.facility-label{*/
    /*    position: absolute;*/
    /*    bottom: 20px;*/
    /*    left: 50%;*/
    /*    transform: translateX(-50%);*/
    /*    text-align: center;*/
    /*    color: #fff;*/
    /*}*/
    
@media (max-width: 800px) {
    .facility-card { min-height: 120px; border-radius: 10px; }
    .facility-label { font-size: .95rem; padding: 5px 9px; border-radius: 7px;}
    .facilities-title { font-size: 1.13rem; }
}

/* Facility Icon Cards Section Animation



/* Facility Icon Cards Section Animation




/* <!-- Facility Icon Cards  Title -->*/
    .signature-amenities1 {
    background: none;
    /* padding: 70px 0 40px; */
    text-align: center;
    /* height: 60%; */
    }
    .amenities-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 42px;
    margin-bottom: 38px;
    }

    .amenity-card {
    background: #f9f4ee;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(70,40,20,0.12);
    width: 185px;
    height: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow .18s, transform .19s;
    }
    .amenity-card img {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    }
    .amenity-label {
    font-size: 1.13rem;
    color: #664428;
    font-weight: 500;
    margin-top: 7px;
    }

    .rotate-neg     { transform: rotate(-22deg);}
    .rotate-low-neg { transform: rotate(-10deg);}
    .rotate-zero    { transform: rotate(0); }
    .rotate-low-pos { transform: rotate(10deg);}
    .rotate-pos     { transform: rotate(22deg);}

    .amenity-card:hover {
    box-shadow: 0 14px 30px rgba(70,40,20,0.17);
    transform: scale(1.045) translateY(-8px);
    }

    .amenities-heading {
    font-family: 'Philosopher', Arial, sans-serif;
    font-size: 2rem;
    color: #5C4238;
    font-weight: 600;
    /* margin-top: -80vh; */
    }

    .highlight {
    color: #F0B150;
    font-weight: 600;
    font-size: 40px;
    }

@media (max-width:900px){
    .amenities-row { gap: 18px; }
    .amenity-card { width: 120px; height: 110px; border-radius: 13px;}
    .amenity-label { font-size: .82rem;}
    .amenities-heading { font-size: 1.15rem;}
}



/* Footer Section */
.bold{
    font-weight:700;
}
    .footer-narayani {
    position: relative;
    min-height: 900px;
    background-position: top;
    background-size: cover !important;
    height: 600px;
    background: url(/assets/img/footer3.webp) no-repeat;
    display: block;
    /*mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 1) 100%);*/
    }
    .footer-overlay {
    background: rgba(255,255,255,0.705);
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(40,20,10,0.13);
    width: 100%; 
    margin: 38px auto 0 auto;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(7px);
    }
    .dsds{
            width: fit-content;
    }
    .footer-overlay h2 {
    font-family: 'Philosopher',serif;
    font-size: 40px; 
    color: #5C4238;
    margin-bottom: 8px;
    }
    .right-text { color: #F0B150; }
    .footer-overlay .subheading {
    font-size: 28px;
    font-family: 'Philosopher',serif;
    color: #5C4238;
    margin-bottom: 18px;
    }
    .footer-cta-row {
    font-family: 'Mulish',sans-serif;
    font-weight: 400;
    font-size: 1.07rem;
    margin: auto;
    padding:10px 30px;
    border-radius: 30px;
    background: #FF9A00;
    min-width: 230px;
    gap: 12px;
    }
    .footer-logo-img {
    width: 50vh;
    max-width: 63vw;
    filter: contrast(1.3);
    }

    .footer-bar {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: rgb(0 0 0 / 22%);
    backdrop-filter: blur(7px);
    border-radius: 40px;
    box-shadow: 0 6px 32px 0 rgba(67, 184, 231, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    min-width: 220px;
    width: auto;
    max-width: 65vw;
    position: absolute;
    right: 0.5vw;
    bottom: 0.5vw;
    left: auto;
    z-index: 10;
    transition: all 0.17s;
    }

    .footer-bar .soc-icon {
    margin: 0 20px;
    }
    .footer-bar .social {
    display: flex;
    gap: 14px;
    }
    .footer-bar .social i {
    font-size: 1.17em;
    color: #fff;
    transition: color 0.18s;
    cursor: pointer;
    }
    .footer-bar .social i:hover { color: #46331A; }
    .footer-bar .credit .heart { color: #e94270; font-size: 1.1em; vertical-align: middle; }



.facility_title{
    margin-top:-10%;
    margin-bottom:5%;
    font-size:40px;
}


/* Device Responsive */
@media (max-width: 900px) {
    .footer-bar {
        flex-direction: column;
        align-items: flex-end;
        right: 1vw;
        bottom: 1vw;
        font-size: 0.91em;
        gap: 8px;
        padding: 7px 8px;
        border-radius: 20px;
        max-width: 98vw;
        left: auto;
    }
}
@media (max-width: 600px) {
    .footer-bar {
        right: 0;
        left: 0;
        bottom: 0;
        max-width: 100vw;
        width: 100vw;
        border-radius: 0;
        font-size: 0.80em;
        padding: 4px 2px;
        align-items: flex-end;
        text-align: right;
        gap: 6px;
    }
}


/* Welcome Text / Comming Soon */
/* For Tablets (iPad, medium devices) */
@media (max-width: 1024px) {
    .comming-soon h1 {
        font-size: 72px;
    }
    .comming-soon h2 {
        font-size: 28px;
    }
    .comming-soon p {
        font-size: 18px;
    }
}



/* For Landscape Tablets and Small Laptops */
@media (max-width: 767px) {
    .comming-soon h1 {
        font-size: 54px;
    }
    .comming-soon h2 {
        font-size: 26px;
    }
    .comming-soon p {
        font-size: 16px;
    }
}

  