﻿/* ===================================================== SUNRISE DREAM WORLD – CLEAN WHITE LUXURY THEME ===================================================== */ /* ================= ROOT ================= */

    :root {
        --white: #ffffff;
        --black: #111111;
        --text-main: #222222;
        --text-muted: #555555;
        --border-light: #eaeaea;
        --gold: #c8a165;
    }
    /* ================= RESET ================= */
    
    html, body {
        margin: 0;
        padding: 0;
        background: var(--white);
        color: var(--text-main);
        font-family: 'Poppins', 'Segoe UI', sans-serif;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    /* ================= COMMON SECTIONS ================= */
    
    section {
        background: var(--white);
        padding: 30px 0;
    }
    
    @media (max-width: 767px) {
        section {
            padding: 50px 0;
        }
    }
    /* ================= HEADINGS ================= */
    
    h1, h2, h3, h4, h5 {
        color: var(--black);
        font-weight: 600;
        margin-bottom: 18px;
    }

    h2,
    h3 {
        text-align: center;
    }

    h2::after, h3::after {
        content: "";
        display: block;
        width: 160px;
        height: 3px;
        background: var(--gold);
        margin: 12px auto 0;
    }
/* ================= TEXT ================= */

    p, li {
        color: var(--text-muted);
        font-size: 15.5px;
        line-height: 1.8;
    }
    /* ================= HERO SLIDER ================= */ /* ================= HERO SLIDER ================= */
    .home-slider {
        position: relative;
        width: 100%;
        height: 85vh;
        overflow: hidden;
    }
    
    .slide-item {
        position: relative;
        width: 100%;
        height: 85vh;
    }

    .slide-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .gradient-overlay {
        position: absolute;
        inset: 0;
        /*background: rgba(0,0,0,0.35);*/
        z-index: 1;
    }
    
    .slick-prev,
    .slick-next {
        z-index: 10;
    }
    
    @media (max-width: 767px) {
        .home-slider,
        .slide-item {
            height: 42vh;
        }
    
        .slick-prev,
        .slick-next {
            display: none !important;
        }
    }

/* ================= HOME marquee css START ================= */

    .subheader-clean {
        padding: 26px 0 28px;
        background: #f7f4ef;
        border-bottom: 1px solid #e5e0d8;
        overflow: hidden;
    }
    
    .subheader-title {
        text-align: center;
        margin-bottom: 14px;
    }

    .sub-title {
        font-size: 30px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
        border: none;
        text-transform: capitalize !important;
    }
    
    .sub-title::first-letter {
        text-transform: uppercase;
    }
    
    .sub-title::after {
        display: none;
    }
    
    .address-marquee {
        width: 100%;
        overflow: hidden;
    }
    
    .marquee-track {
        display: flex;
        width: max-content;
        animation: marqueeFull 22s linear infinite;
    }
    
    .marquee-track span {
        font-size: 14.5px;
        font-weight: 500;
        color: #7a5c2e;
        white-space: nowrap;
        padding-right: 120px;
        letter-spacing: 0.4px;
        text-transform: lowercase !important;
    }
    
    .marquee-track span::first-letter {
        text-transform: uppercase;
    }
    
    @keyframes marqueeFull {
        0% {
            transform: translateX(100%);
        }
    
        100% {
            transform: translateX(-100%);
        }
    }
    
    @media (max-width: 768px) {
        .sub-title {
            font-size: 22px;
        }
    
        .marquee-track span {
            font-size: 13.5px;
            padding-right: 80px;
        }
    
        .marquee-track {
            animation-duration: 16s;
        }
    }

/* ===== HOME marquee END ===== */


/* ================= START LUXURY CONTENT SECTIONS CSS ================= */

    .lux-section.alt-bg { /*background: #f7f4ef;*/
    }

    .lux-section.reverse .lux-row {
        flex-direction: row-reverse;
    }

    .lux-row {
        max-width: 1400px;
        margin: auto;
        row-gap: 40px;
    }

    .lux-img img {
        border-radius: 18px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    }
    
    .lux-content {
        padding: 0 60px;
    }

    .lux-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #0c0d0e;
        margin-bottom: 16px;
    }

    @media (max-width: 991px) {

        .lux-row, .lux-row.reverse {
            flex-direction: column;
        }
    
        .lux-content {
            padding: 0;
            text-align: center;
        }
    
         .lux-content p {
             font-size: 15px;
         }
    
         .lux-img img {
             border-radius: 14px;
         }
    }

/* ================= END LUXURY CONTENT SECTIONS CSS ================= */

/* ================= CARDS / BLOG / ROOMS ================= */

    .blog-details, .card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    }
    /* ================= LISTS ================= */
    
    .ul-style {
        padding-left: 0;
    }

    .ul-style li {
        list-style: none;
        padding: 10px 0;
        border-bottom: 1px dashed var(--border-light);
    }
/* ================= BUTTONS ================= */

    .btn-primary {
        background: var(--gold);
        border: none;
        color: #fff;
        border-radius: 30px;
        padding: 11px 30px;
        font-weight: 600;
    }

    .btn-primary:hover {
        background: #b89355;
    }
/* ================= FORMS ================= */

    .form-control {
        background: var(--white);
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 12px 14px;
    }

    .form-control:focus {
        border-color: var(--gold);
        box-shadow: none;
    }
/* ================= MAP ================= */

    .ratio iframe {
        border-radius: 16px;
        border: 1px solid var(--border-light);
    }
/* ================= HERO SECTION ================= */

/* LUXURY OVERLAY */

    .lux-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100% );
    }
    
    @media (max-width: 991px) {
        .lux-hero {
            padding: 110px 0 90px;
        }
    }
    
    
    @media (max-width: 768px) {
        .lux-hero {
            padding: 90px 0 80px;
        }
    }
    
/* ================= ROOM FACILITIES ================= */

    .room-facilities {
        background: #ffffff;
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 50px;
        position: relative;
    }

    .section-title::after {
        content: "";
        width: 250px;
        height: 3px;
        background: linear-gradient(90deg, #c8a165, #e6d3a3);
        display: block;
        margin: 14px auto 0;
        border-radius: 3px;
    }

/* GRID */

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1100px;
        margin: auto;
    }
    /* LIST */
    
    .ul-style {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ul-style li {
        position: relative;
        padding: 12px 0 12px 30px;
        font-size: 15.5px;
        color: #4b5563;
        line-height: 1.6;
        border-bottom: 1px dashed #e5e7eb;
    }
    /* CHECK ICON */

    .ul-style li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 12px;
        color: #c8a165;
        font-weight: bold;
    }
/* ================= MOBILE ================= */

    @media (max-width: 768px) {
        .room-facilities {
            padding: 50px 20px;
        }
    
        .section-title {
            font-size: 24px;
            margin-bottom: 35px;
        }
    
        .facilities-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
    
        .ul-style li {
            font-size: 14.5px;
            padding-left: 26px;
        }
    }
/* ================= TESTIMONIALS – DARK LUXURY ================= */

    .testimonial-dark {
        background: #0e0e0e;
        padding: 100px 0;
        color: #ffffff;
    }
    /* TITLE */
    
    .testimonial-title {
        font-size: 36px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #ffffff;
        margin-bottom: 12px;
    }
    /* GOLD DIVIDER */
    
    .testimonial-divider {
        display: block;
        width: 70px;
        height: 3px;
        margin: 0 auto;
        background: linear-gradient(90deg, #c8a165, #e6d3a3, #c8a165);
        border-radius: 4px;
    }
    /* TEXT */
    
    .testimonial-text {
        font-size: 18px;
        line-height: 1.9;
        color: #e5e5e5;
        max-width: 820px;
        margin: auto;
        font-style: italic;
    }
    /* NAME */
    
    .testimonial-name {
        margin-top: 24px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }
    /* ROLE */
    
    .testimonial-role {
        font-size: 13px;
        letter-spacing: 1px;
        color: #c8a165;
        text-transform: uppercase;
    }
    /* CAROUSEL */
    
    .carousel-item {
        padding: 10px 40px 0;
    }
    /* ARROWS */
    
    .carousel-control-prev-icon, .carousel-control-next-icon {
        filter: invert(1);
        opacity: 0.7;
    }
    
    .carousel-control-prev:hover .carousel-control-prev-icon, .carousel-control-next:hover .carousel-control-next-icon {
        opacity: 1;
    }
    /* REMOVE BLUE FOCUS */
    
    .carousel-control-prev, .carousel-control-next {
        outline: none;
        box-shadow: none;
    }
    /* ================= MOBILE ================= */
    
    @media (max-width: 768px) {
        .testimonial-dark {
            padding: 70px 0;
        }
    
        .testimonial-title {
            font-size: 26px;
        }
    
        .testimonial-text {
            font-size: 15px;
            padding: 0 10px;
        }
    
        .carousel-item {
            padding: 0 15px;
        }
    }
    /* =============================== ABOUT TREELAND SECTION ================================ */
    
    .about-treeland-section {
        background: linear-gradient( rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92) );
        padding: 80px 0 80px; /* TOP / BOTTOM spacing FIXED */
        color: #ffffff;
    }
    /* Title */
    
    .section-title {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }
    /* Divider */
    
    .lux-divider {
        width: 90px;
        height: 3px;
        background: linear-gradient(90deg, #caa45d, #f1ddb0, #caa45d);
        margin: 0 auto 35px;
        border-radius: 10px;
    }
    /* Description */
    
    .section-desc {
        font-size: 18px;
        line-height: 1.9;
        max-width: 900px;
        margin: 0 auto 45px; /* gap before button */
        color: #e5e5e5;
    }
    
    .btn-contact-lux {
        display: inline-block;
        background: linear-gradient(135deg, #caa45d, #e8d3a0);
        color: #000;
        padding: 14px 50px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        text-decoration: none;
        transition: all 0.35s ease;
        box-shadow: 0 12px 28px rgba(202, 164, 93, 0.4);
    }
    /* Hover */ 

    .btn-contact-lux:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(202, 164, 93, 0.6);
        color: #000;
    }
/* =============================== FOOTER SPACING FIX ================================ */

    footer {
        padding-top: 60px;
    }

/* =================================================
   LUX HERO – SISODIA BAGH STYLE (NO IMAGE CUT)
================================================= */

    .lux-hero {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), url('../gallary/26.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        color: #ffffff;
        overflow: hidden;
    }

/* =================================================
   CONTAINER
================================================= */

    .lux-container {
        max-width: 1200px;
        padding: 0 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

/* =================================================
   HERO CONTENT
================================================= */

    .hero-content {
        max-width: 850px;
        margin-bottom: 50px;
    }
    
    .hero-tagline {
        font-size: 13px;
        letter-spacing: 3.5px;
        text-transform: uppercase;
        color: #e6d3a3;
        margin-bottom: 14px;
        display: inline-block;
    }
    
    .hero-content h2 {
        font-size: 42px;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.3;
        margin-bottom: 22px;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.9;
        color: #f3f3f3;
        max-width: 760px;
        margin: 0 auto;
    }
    
    /* =================================================
       FEATURES GRID
    ================================================= */
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 28px;
        max-width: 1100px;
    }
    
    .feature-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-box i {
        font-size: 46px;
        color: #ffffff;
        margin-bottom: 10px;
    }

    .feature-box h4 {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.4px;
        margin: 0;
        color: #ffffff;
    }

/* =================================================
   TABLET FIX
================================================= */

    @media (max-width: 991px) {
    
        .lux-hero {
            background-attachment: scroll;
            min-height: auto;
            padding: 90px 0 70px;
            /* 🔥 KEY FIX */
            background-position: top center;
        }
    
        .hero-content h2 {
            font-size: 32px;
            color: #ffffff;
        }
    
        .hero-content p {
            font-size: 15px;
        }
    
        .hero-features {
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
    
        .feature-box i {
            font-size: 38px;
        }
    }

/* =================================================
   MOBILE FIX – NO IMAGE CUT
================================================= */

    @media (max-width: 576px) {
    
        .lux-hero {
            padding: 80px 0 55px;
            /* 🔥 MOST IMPORTANT LINE */
            background-position: top center;
        }
    
        .hero-content h2 {
            font-size: 25px;
            color: #ffffff;
        }
    
        .hero-content p {
            font-size: 14px;
            line-height: 1.75;
        }
    
        .hero-features {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
    
        .feature-box i {
            font-size: 34px;
        }
    }


