@font-face {
    font-family: "Playfair Display";
    src: url("fonts/Playfair_Display/PlayfairDisplay-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: "Cinzel";
    src: url("fonts/Cinzel/Cinzel-Bold.ttf") ;
    font-weight: 700;
    font-style: normal;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(180deg, #1a2a44, #2e4a6b);
    color: #fff;
    overflow-x: hidden;
}

img{
    display: block;
    max-width: 100%;
    object-fit: cover;
}
a{
    text-decoration: none;
    color: inherit;
}
button{
    border: none;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(26, 42, 68, 0.9);
    z-index: 1000;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a373;
} 

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a373;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #d4a373;
}
section {
    padding: 80px 0;
}

.section-top{
    padding-top: 130px;
}

h2, h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d4a373;
    margin-bottom: 20px;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    margin-left: 20px;
}

ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d4a373;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4a373, #a68a64);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.5);
}
.img{
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
#hero {
            height: 100vh;
            max-height: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('image/banner.jpeg') center/cover no-repeat;
            position: relative;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-family: 'Cinzel', serif;
            color: #d4a373;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        section {
            padding: 80px 0;
        }

        h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: #d4a373;
            margin-bottom: 20px;
        }

        p, li {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0e0e0;
        }

        /* About Section */
        #about {
            background: #2e4a6b;
        }

        #about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-img {
            flex: 1;
        }

        .about-img img {
            width: 100%;
            border-radius: 10px;
        }

        /* Rooms Section */
        #rooms {
            background: #1a2a44;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }

        .room-card {
            background: #2e4a6b;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }

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

        .room-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .room-card h3 {
            font-size: 1.5rem;
            padding: 20px;
            color: #d4a373;
        }
        .room-card p{
            padding: 0 20px;
        }

        /* Dining Section */
        #dining {
            background: #2e4a6b;
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 10px;
        }

        .accordion-header {
            background: #1a2a44;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 5px;
        }

        .accordion-header h3 {
            font-size: 1.3rem;
            color: #d4a373;
        }

        .accordion-content {
            display: none;
            background: #2e4a6b;
            padding: 15px;
            border-radius: 0 0 5px 5px;
        }

        .accordion-content.active {
            display: block;
        }

        .accordion-content img {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        /* Testimonials Section */
        #testimonials {
            background: #1a2a44;
        }

        .testimonial-carousel {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            text-align: center;
            padding: 20px;
        }

        .testimonial-slide img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px auto;
        }

        .testimonial-slide p {
            font-style: italic;
        }

        .testimonial-slide h4 {
            font-size: 1.2rem;
            color: #d4a373;
            margin-top: 10px;
        }

        #gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            position: relative;
            min-width: 100%;
        }

        .slide img {
            width: 100%;
            border-radius: 10px;
        }

        .slide-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #fff;
            font-size: 1.2rem;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 20px;
            border-radius: 10px;
        }

        /* Contact Section */
        #contact {
            background: #1a2a44;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #d4a373;
            border-radius: 5px;
            background: #2e4a6b;
            color: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .label-wrapper{
            display: flex;
        }
        .form-group input[type="checkbox"] {
            width: auto;
            margin-right: 10px;
        }
/* Deluxe Monsoon Suite (Choose Your Room) */
#deluxe-suite, #raindrop-bistro, #serenity-spa, #royal-weddings {
    background: #2e4a6b;
}

#deluxe-suite .container, #raindrop-bistro .container, #serenity-spa .container, #royal-weddings .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.suite-text, .bistro-text, .spa-text, .wedding-text {
    flex: 1;
}

.suite-img, .bistro-img, .spa-img, .wedding-img {
    flex: 1;
}

.suite-img img, .bistro-img img, .spa-img img, .wedding-img img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.suite-img img:hover, .bistro-img img:hover, .spa-img img:hover, .wedding-img img:hover {
    transform: scale(1.05);
}

 #lakeside-banquets .container {
    text-align: center;
}

  .banquet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

 .banquet-gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

/* Garden Mist Room, Monsoon Flavors, Meditation Retreats, Corporate Retreats (Feature Lists) */
#garden-room, #monsoon-flavors, #meditation-retreats, #corporate-retreats {
    background: #1a2a44;
}

.room-features, .flavors-list, .retreat-list, .retreat-features {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.room-features li, .flavors-list li, .retreat-list li, .retreat-features li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.room-features li::before {
    content: '\f773';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4a373;
}

.flavors-list li::before {
    content: '\f2e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4a373;
}

.retreat-list li::before {
    content: '\f7a6';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4a373;
}

.retreat-features li::before {
    content: '\f0b1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4a373;
}

/* Monsoon Loft, Chef’s Table, Wellness Workshops, Cultural Events (Sliders) */
#monsoon-loft, #wellness-workshops {
    background: #2e4a6b;
}

.loft-slider,  .workshop-slider {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.loft-slides, .workshop-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.loft-slide,  .workshop-slide {
    min-width: 100%;
    text-align: center;
}

.loft-slide img, .workshop-slide img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.loft-slide p, .workshop-slide p {
    margin: 20px 0;
}

 #spice-garden .container, #herbal-treatments .container, #monsoon-venue .container {
    display: flex;
    gap: 40px;
    align-items: center;
    transform: skewY(-5deg);
}

 .spice-text, .herbal-text, .venue-text {
    flex: 1;
    transform: skewY(5deg);
}

 .spice-img, .herbal-img, .venue-img {
    flex: 1;
    transform: skewY(5deg);
}
 .spice-img img, .herbal-img img, .venue-img img {
    width: 100%;
    border-radius: 10px;
}

/* Lakeview Room, Private Dining, Fitness Studio, Private Celebrations (Grid) */
 #private-dining, #fitness-studio {
    background: #1a2a44;
}
 .dining-grid, .fitness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

 .dining-card, .fitness-card {
    background: #2e4a6b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.dining-card:hover, .fitness-card:hover {
    transform: translateY(-10px);
}
 .dining-card img, .fitness-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* Room Comparison, Dining Philosophy, Wellness Philosophy, Event Spaces (Image Flex) */
#room-comparison, #dining-philosophy, #event-spaces {
    background: #1a2a44;
}

#room-comparison .container, #dining-philosophy .container, #event-spaces .container {
    text-align: center;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.comparison-item {
    background: #2e4a6b;
    padding: 20px;
    border-radius: 10px;
}

.comparison-item h3 {
    font-size: 1.2rem;
    color: #d4a373;
    margin-bottom: 15px;
}

.philosophy-images, .spaces-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.philosophy-images img, .spaces-images img {
    width: 300px;
    height: 250px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.philosophy-images img:hover, .spaces-images img:hover {
    transform: scale(1.1);
}

/* Thank You Page */
#thank-you {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    min-height: 100vh;
}

/* Footer */
footer {
    background: #1a2a44;
    padding: 40px 0;
    color: #e0e0e0;
}

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

.footer-grid h3, .footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    color: #d4a373 !important;
    margin-bottom: 10px;
}

.footer-grid a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #d4a373;
}
 @media (max-width: 1024px) {
            #about .container,
            #spa .container {
                flex-direction: column;
            }

            .about-img img,
            .spa-img img {
                max-width: 500px;
            }
             #deluxe-suite .container, #raindrop-bistro .container, #serenity-spa .container, #royal-weddings .container,
     #spice-garden .container, #herbal-treatments .container, #monsoon-venue .container {
        flex-direction: column;
    }

    .suite-img img, .bistro-img img, .spa-img img, .wedding-img img,
     .spice-img img, .herbal-img img, .venue-img img {
        max-width: 500px;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .philosophy-images, .spaces-images {
        flex-direction: column;
        align-items: center;
    }
        }

/* Mobile Menu */
@media (max-width: 768px) {
.logo{font-size: 1.6rem;}
     .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
    h2, h1 {
        font-size: 2rem;
    }

    p, li {
        font-size: 1rem;
    }
    .container{
        padding: 0 10px;
    }
    .nav-links {
        transform: translateX(100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1a2a44;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0%);
    }
    .nav-links a{
        font-size: 24px;
    }

    .burger {
        position: relative;
        z-index: 999;
        display: block;
    }
    body.no-scroll {
        overflow: hidden;
    }
}