/* बेसिक रीसेट और गूगल फ़ॉन्ट्स (अगर ज़रूरत हो तो बाद में डालेंगे) */
body {
    margin: 0;
    /* font-family: 'Roboto', sans-serif; */
    font-family: "Trirong", serif;
    /* डिफ़ॉल्ट फ़ॉन्ट */
    background-color: #ffffff;
    color: #555;
    /* डिफ़ॉल्ट टेक्स्ट का रंग */
}

/* ======== नए हेडर की स्टाइलिंग ======== */
header {
    /* background-color: #fff; */
    background-color: #202A44;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    /* ताकि स्क्रॉल करने पर हेडर ऊपर चिपका रहे */
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* लोगो की इमेज की स्टाइलिंग */
nav .logo img {
    height: 50px;
    /* आप लोगो के साइज़ को यहाँ से कंट्रोल कर सकते हैं */
    width: auto;
}

/* नेविगेशन लिंक्स की स्टाइलिंग */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    /* लिंक्स के बीच में स्पेस */
}

.nav-links li a {
    color: #f0e0e0;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links li .dropdown-toggle {
    color: #f0e0e0;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer; /* डेस्कटॉप पर भी कर्सर को पॉइंटर बनाएँ */
    transition: color 0.3s;
}

/* होवर इफ़ेक्ट भी जोड़ें */
.nav-links li .dropdown-toggle:hover {
    color: #daa520; /* होवर पर भूरा रंग */
}


.nav-links li a:hover {
    color: #daa520;
    /* होवर पर भूरा रंग */
}

/* एक्टिव लिंक की स्टाइलिंग */
.nav-links li a.active-link {
    color: #ffc107;
    /* पीला रंग, या आप कोई और रंग चुन सकते हैं */
    font-weight: bold;
}

/* ================= Dropdown (Submenu) ================= */

/* Parent container */
.nav-links li.dropdown {
    position: relative;
}

/* Submenu container */
.nav-links li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* directly under parent */
    left: 0;
    background-color: #202A44;
    /* same as header background */
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    z-index: 1000;
}

/* Submenu items */
.nav-links li .dropdown-menu li {
    list-style: none;
    margin: 0;
    /* reset margin */
}

.nav-links li .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #f0e0e0;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

/* Hover on submenu items */
.nav-links li .dropdown-menu li a:hover {
    background-color: #2c3655;
    /* slightly lighter than header */
    color: #daa520;
    /* golden hover */
}

/* Show submenu on hover */
.nav-links li.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Caret icon style */
.nav-links li.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}





/* Reservations बटन की स्टाइलिंग */
.btn-reservations {
    background-color: #daa520;
    /* स्क्रीनशॉट वाला भूरा रंग */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-reservations:hover {
    background-color: #daa520;
    /* थोड़ा गहरा भूरा */
}


.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/about-us.jpg');
    height: 70vh;
    background-size: cover;
    background-position: center;

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

.menu-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/dish-9.jpg');
    height: 70vh;
    background-size: cover;
    background-position: center;

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

.menu-hero2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/special-dish.jpg');
    height: 70vh;
    background-size: cover;
    background-position: center;

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




/* हीरो सेक्शन के कंटेंट की स्टाइलिंग */
.hero-content {
    /* इस बार हमें अलग से काले बॉक्स की जरूरत नहीं क्योंकि इमेज पर पहले से डार्क लेयर है */
}

.hero-content h1 {
    font-family: "Trirong", serif;
    font-size: 60px;
    /* बड़ा फॉन्ट साइज़ */
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.hero-content .divider {
    color: #ffc107;
    /* पीला रंग */
    font-size: 24px;
    margin: 20px 0;
}

.hero-content p {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

/* ======== Reservations and Venues Section Styling (New Layout) ======== */
.reservations-section-new {
    /* इस सेक्शन की अपनी कोई पैडिंग या बैकग्राउंड नहीं होगी */
}

.section-title {
    padding: 30px 20px 30px 20px;
    text-align: center;
    background-color: #f7fdff;
}

.venues-split-container {
    display: flex;
    flex-wrap: wrap;
    /* ताकि मोबाइल पर नीचे आ सके */
}


.venue-split-column {
    padding: 60px 40px;
    width: 50%;
    /* दोनों कॉलम आधी-आधी जगह लेंगे */
    box-sizing: border-box;
    /* पैडिंग को चौड़ाई में शामिल करने के लिए */
}

.venue-split-column1 {
    width: 100%;
    /* padding: 5px 0px; */
    width: 50%;
    /* दोनों कॉलम आधी-आधी जगह लेंगे */
    /* box-sizing: border-box; */
    /* पैडिंग को चौड़ाई में शामिल करने के लिए */
}

.venue-split-column2 {
    width: 100%;
    padding: 5% 0px 0px 0px;
    width: 50%;
}



.dark-bg {
    background-color: #2B2F4A;
    color: white;
}

.light-bg {
    background-color: #F5F5F5;
    color: #333;
}

.venue-card-new {
    max-width: 500px;
    margin: 0 auto;
    /* कार्ड को कॉलम के बीच में रखने के लिए */
    text-align: center;
}

.venue-card-new img {
    width: 100%;
    height: 300px;
    /* दोनों इमेज को एक निश्चित ऊंचाई देता है */
    object-fit: cover;
    /* इमेज को बिना खींचे बॉक्स में फिट करता है */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.venue-content-new {
    padding-top: 30px;
}

.venue-content-new h3 {
    font-size: 28px;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.venue-content-new .address {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.venue-content-new .opening-hours {
    margin: 20px 0;
    line-height: 1.6;
}

/* नए बटन्स के लिए स्टाइल */
.venue-content-new a {
    display: block;
    margin: 10px auto;
    padding: 15px 20px;
    max-width: 250px;
    border-radius: 50px;
    /* पूरी तरह गोल किनारे */
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.venue-content-new2 a {
    display: block;
    margin: 10px auto;
    padding: 15px 20px;
    max-width: 250px;
    border-radius: 50px;
    /* पूरी तरह गोल किनारे */
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-split-light {
    background-color: #fdf5e8;
    color: #9a674F;
}

.btn-split-light:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.btn-split-outline-light {
    background-color: transparent;
    color: #fdf5e8;
    border: 2px solid #fdf5e8;
}

.btn-split-outline-light:hover {
    background-color: #fdf5e8;
    color: #9a674F;
    transform: translateY(-3px);
}

.btn-split-dark {
    background-color: #9a674F;
    color: white;
}

.btn-split-dark:hover {
    background-color: #daa520;
    transform: translateY(-3px);
}

.btn-split-outline-dark {
    background-color: transparent;
    color: #9a674F;
    border: 2px solid #9a674F;
}

.btn-split-outline-dark:hover {
    background-color: #9a674F;
    color: white;
    transform: translateY(-3px);
}

.btn-about-outline-dark {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-about-outline-dark:hover {
    background-color: white;
    color: #9a674F;
    transform: translateY(-3px);
}

/* ======== यहाँ पर नया कोड पेस्ट करें ======== */
/* सभी बटन्स के लिए बेहतर होवर इफ़ेक्ट */
.btn-reservations,
.btn-light,
.btn-dark,
.btn-outline-light,
.btn-outline-dark {
    transition: transform 0.2s ease, background-color 0.3s, color 0.3s, border-color 0.3s;
}

.venue-content-new2 {
    transition: transform 0.2s ease, background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-reservations:hover,
.btn-light:hover,
.btn-dark:hover,
.btn-outline-light:hover,
.btn-outline-dark:hover {
    transform: translateY(-3px);
}

.venue-content-new2:hover {
    transform: translateY(-3px);
}

/* ======== Specialties Section Styling ======== */
.specialties-section {
    background-color: #f7fdff;
    /* हल्का बेज बैकग्राउंड */
    padding: 80px 20px;
    text-align: center;
}

.specialties-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    /* कार्ड्स के बीच ज्यादा गैप */
}

.specialty-card {
    max-width: 300px;
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    /* कार्ड को 10px ऊपर उठाएगा */
}

.icon-container {
    font-size: 60px;
    /* आइकॉन का साइज़ */
    color: #9a674F;
}

.divider-dots {
    color: #9a674F;
    font-size: 18px;
    letter-spacing: 5px;
    /* डॉट्स के बीच स्पेस */
    margin: 20px 0;
}

.specialty-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #9a674F;
    margin: 10px 0;
}

.specialty-card p {
    font-size: 16px;
    color: #daa520;
    line-height: 1.5;
}

/* मेनू बटन्स की स्टाइलिंग */
.menu-buttons-container {
    margin-top: 50px;
    display: table;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======== About Us Section Styling ======== */
.about-us-section {
    background-color: #fff;
    padding: 0;
    /* कोई अतिरिक्त पैडिंग नहीं */
}

.about-us-container {
    display: flex;
    flex-wrap: wrap;
    /* मोबाइल पर रैप करने के लिए */
}

.about-image-side,
.about-text-side {
    width: 50%;
    /* दोनों हिस्से आधी-आधी जगह लेंगे */
    box-sizing: border-box;
    /* पैडिंग को चौड़ाई में शामिल करने के लिए */
}

.about-image-side {
    position: relative;
    /* ओवरले टेक्स्ट के लिए */
}

.main-about-image {
    width: 100%;
    display: block;
    /* नीचे के अतिरिक्त स्पेस को हटाने के लिए */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    /* टेक्स्ट को नीचे लाने के लिए */
    padding: 40px;
    box-sizing: border-box;
}

.overlay-text {
    color: white;
}

.overlay-text h2 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.overlay-text p {
    font-size: 18px;
    margin: 10px 0 0 0;
}

.about-text-side {
    background-color: #fdf5e8;
    /* हल्का बेज रंग */
    color: #daa520;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.8;
}

.about-text-side .btn-light {
    margin-top: 30px;
    background-color: #9a674F;
    color: white;
}

.about-text-side .btn-light:hover {
    background-color: #daa520;
}

/* ======== Special Dishes Section Styling ======== */
.secondary-image-section {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    /* Start with first background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: bgSlide 25s infinite;
    /* slideshow */
}

@keyframes bgSlide {
    0% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-1.jpg');
    }

    10% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/rice-1.jpg');
    }
    20% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-2.jpg');
    }
    30% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/drinks-2.jpg');
    }
    40% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-5.jpg');
    }

    50% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/sweet-main-1.jpg');
    }
    60% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-7.jpg');
    }
    70% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-8.jpg');
    }
    80% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/dish-9.jpg');
    }

    90% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/sweet-1.jpg');
    }
    100% {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/drinks-1.jpg');
        /* loop back */
    }
}

/* .secondary-image-section img {
    max-width: 33%;
    height: auto;
    border: 5px solid white;
    border-left: 5px solid white;
} */



/* ======== Footer Styling ======== */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.footer-logo img {
    height: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* ======== Delivery & Connect Sections Styling ======== */
.simple-text-section,
.connect-section {
    padding: 60px 20px;
    text-align: center;
}

.simple-text-section h2,
.connect-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #6d4c41;
}

.simple-text-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.text-link {
    display: block;
    color: #9a674F;
    text-decoration: underline;
    margin-bottom: 10px;
    font-weight: bold;
}

.connect-section {
    background-color: #fdf5e8;
}

.divider-wavy {
    color: #ffc107;
    font-size: 24px;
    margin: 10px 0 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-handle {
    color: #6d4c41;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

/* ======== नया फूटर स्टाइल (डिजाइन के अनुसार) ======== */
.new-footer {
    background-color: #202A44;
    /* गहरा भूरा रंग */
    color: #e0dcd7;
    padding: 60px 40px;
    font-size: 14px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.scroll-to-top {
    text-align: center;
}

.scroll-to-top a {
    color: white;
    font-size: 80px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-to-top a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-to-top i {
    line-height: 0.7;
}

.footer-bottom-new {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #8a6d62;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links a {
    color: #e0dcd7;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: white;
}

/* ======== Generic Page Header Styling ======== */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--bg-image);
}

.page-header h1 {
    font-size: 60px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-family: "Trirong", serif;
}


/* ======== Menu Section Styling ======== */
.menu-section {
    padding: 80px 20px;
    background-color: #f7fdff;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-container h2 {
    font-size: 36px;
    color: #9a674F;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0c9a6;
    font-family: 'Poppins', sans-serif;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #c8b598;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    flex-basis: 70%;
    margin: 0;
    font-size: 20px;
    color: #333;
}

.item-price {
    flex-basis: 25%;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #9a674F;
}

.item-description {
    flex-basis: 100%;
    margin-top: 5px;
    font-size: 16px;
    color: #daa520;
}

/* ======== Contact Section Styling ======== */
.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    /* दोनों को बराबर जगह देता है */
    min-width: 350px;
    /* मोबाइल पर सही दिखने के लिए */
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    color: #9a674F;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-info p {
    line-height: 1.7;
    color: #555;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-item i {
    font-size: 20px;
    color: #9a674F;
    width: 30px;
}

.contact-info h4 {
    margin-top: 30px;
    font-size: 20px;
    color: #9a674F;
    font-family: 'Poppins', sans-serif;
}

/* Form Styling */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    /* To include padding in width */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9a674F;
}

.contact-form button {
    cursor: pointer;
    border: none;
    align-self: flex-start;
    /* बटन को बाईं ओर रखने के लिए */
}

/* Map Section Styling */
.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    display: block;
    /* नीचे के अतिरिक्त स्पेस को हटाने के लिए */
}

/* ======== Detailed About Section Styling ======== */
.detailed-about-section {
    padding: 80px 20px;
    background-color: #f7fdff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-text {
    flex: 1.5;
    /* टेक्स्ट वाले हिस्से को ज्यादा जगह देता है */
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: #daa520;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: #daa520;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
}

/* ======== Services Section Styling ======== */
.services-section {
    padding: 80px 20px;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-icon {
    font-size: 40px;
    color: #9a674F;
    padding-top: 5px;
}

.service-text h3 {
    font-size: 24px;
    color: #9a674F;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.hamburger-menu {
    display: none;
}


/* =============================================== */
/* =========== MEDIA QUERIES (RESPONSIVE) ========== */
/* =============================================== */

/* -- ब्रेकपॉइंट 1: बड़े टैबलेट और छोटे लैपटॉप (1200px तक) -- */
@media (max-width: 1200px) {

    nav,
    .about-us-container,
    .contact-container,
    .about-container,
    .services-container,
    .menu-container,
    .footer-content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
}


/* -- ब्रेकपॉइंट 2: टैबलेट (992px तक) -- */
@media (max-width: 992px) {

    /* -- नेविगेशन को बदलना -- */
    .nav-links {
        display: none;
        /* मेनू को छुपाना */
        flex-direction: column;
        position: absolute;
        top: 82px;
        /* हेडर की ऊंचाई के बराबर */
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        /* जावास्क्रिप्ट से दिखाने के लिए */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        color: white;
    }

    /* ======================================= */
    /* ========= नया कोड यहाँ जोड़ें ========= */
    /* ======================================= */

    .nav-links li .dropdown-toggle {
        /* --- यहाँ बदलाव किया गया है --- */
        color: white; /* <<< रंग को बाकी टैब्स की तरह सफेद करें */
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        transition: color 0.3s; /* <<< स्मूथ होवर इफ़ेक्ट के लिए */
        /* --- बदलाव खत्म --- */
        
        display: block;
        padding: 8px 0;
        cursor: pointer;
    }

    /* सब-मेनू को पूरी तरह से रीसेट करें */
    .nav-links li.dropdown .dropdown-menu {
        display: none;
        position: static;
        background: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        min-width: 0;
        border-top: 1px solid #444;
        margin-top: 10px;
        text-align: center;
    }
    
    .nav-links li.dropdown .dropdown-menu li {
        margin: 10px 0;
    }

    .nav-links li.dropdown .dropdown-menu li a {
        color: #aaa;
        font-weight: normal;
    }
    
    /* ======================================= */
    /* ============= कोड खत्म ============= */
    /* ======================================= */


    .hamburger-menu {
        display: block;
        /* हैमबर्गर आइकॉन दिखाना */
        background: none;
        border: none;
        color: #dcdcdc;
        font-size: 24px;
        cursor: pointer;
    }

    .btn-reservations {
        display: none;
        /* रिजर्वेशन बटन को छुपाना */
    }

    .venue-content-new2 {
        display: none;
        /* रिजर्वेशन बटन को छुपाना */
    }

    /* -- हीरो सेक्शन -- */
    .hero-content h1 {
        font-size: 40px;
        font-family: "Trirong", serif;
    }

    /* -- वेन्यू कार्ड्स को एक के नीचे एक लाना -- */
    .venues-container {
        flex-direction: column;
        align-items: center;
    }

    .venue-split-column {
        width: 100%;
        /* टैबलेट और मोबाइल पर कॉलम पूरी चौड़ाई लेगा */
    }

    .venue-card {
        width: 90%;
        max-width: 500px;
    }

    /* -- अबाउट अस सेक्शन -- */
    .about-us-container {
        flex-direction: column;
    }

    .about-image-side,
    .about-text-side {
        width: 100%;
    }

    /* -- सेकंडरी इमेज -- */
    .secondary-image-section img {
        max-width: 80%;
    }

    /* -- अबाउट पेज -- */
    .about-container {
        flex-direction: column;
    }
}


/* -- ब्रेकपॉइंट 3: मोबाइल फोन (768px तक) -- */
@media (max-width: 768px) {

    /* -- हेडर -- */
    nav .logo img {
        height: 40px;
    }

    /* -- हीरो सेक्शन -- */
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
        font-family: "Trirong", serif;
    }

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

    /* -- Specialties सेक्शन -- */
    .specialties-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    /* -- Page Header -- */
    .page-header h1 {
        font-size: 40px;
        font-family: "Trirong", serif;
    }

    /* -- Menu Page -- */
    .item-name,
    .item-price {
        font-size: 18px;
    }

    /* -- Footer -- */
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}


/* -- ब्रेकपॉइंट 4: छोटे मोबाइल फोन (576px तक) -- */
@media (max-width: 576px) {

    /* -- About Us Section on Homepage -- */
    .about-text-side {
        padding: 40px 20px;
    }

    /* -- Contact Form -- */
    .contact-container {
        flex-direction: column;
    }

    /* -- Services Page -- */
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =============================================== */
/* =========== SCROLL ANIMATION STYLES =========== */
/* =============================================== */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    /* एलिमेंट को 50px नीचे खिसका देगा */
    transition: all 1s ease-out;
    /* 1 सेकंड का स्मूथ ट्रांजीशन */
}

.show {
    opacity: 1;
    transform: translateY(0);

}

/* ======== Services Page: Hero Section Styling (UPDATED) ======== */
.services-hero {
    height: auto;
    min-height: 60vh;
    /* <<--- HEIGHT KO 80vh SE 60vh KAR DIYA HAI */
    padding: 60px 20px;
    /* Padding bhi thodi kam kar di hai */
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
}

.services-hero-content {
    max-width: 900px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    /* हल्का डार्क बैकग्राउंड */
    padding: 40px;
    border-radius: 10px;
}

.services-hero-content h1 {
    font-family: "Trirong", serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 20px;
}

.service-icons-strip {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    min-width: 120px;
}

.icon-item i {
    font-size: 40px;
    color: #ffc107;
    /* पीला रंग */
}

.icon-item span {
    font-weight: 500;
    font-size: 16px;
}

/* ======== Detailed Services (Zig-Zag Layout) ======== */
.detailed-services-section {
    padding: 40px 20px;
    background-color: #f7fdff;
}

.service-detail-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 40px 50px 40px auto;
    gap: 40px;
}

/* इमेज को दाईं ओर और टेक्स्ट को बाईं ओर करने के लिए */
.service-detail-row.reverse {
    flex-direction: row-reverse;
}

.service-detail-row1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 40px 50px;
    gap: 40px;
}

/* इमेज को दाईं ओर और टेक्स्ट को बाईं ओर करने के लिए */
.service-detail-row1.reverse {
    flex-direction: row-reverse;
}

.service-text-col,
.service-image-col {
    flex: 1;
    min-width: 320px;
    background-color: #d8bfd8d6;
    border-radius: 10px;
    padding: 10px;
    /* मोबाइल पर सही दिखने के लिए */
}

.service-text-col1,
.service-image-col1 {
    flex: 1;
    min-width: 320px;
    background-color: #d8bfd8d6;
    border-radius: 10px;
    padding: 10px;
    /* मोबाइल पर सही दिखने के लिए */
}

.service-text-col2,
.service-image-col2 {
    flex: 1;
    min-width: 320px;
    background-color: #d8bfd8d6;
    border-radius: 10px;
    padding: 10px;
    /* मोबाइल पर सही दिखने के लिए */
}

.service-text-col3,
.service-image-col3 {
    flex: 1;
    min-width: 320px;
    background-color: #d8bfd8d6;
    border-radius: 10px;
    padding: 10px;
    /* मोबाइल पर सही दिखने के लिए */
}

.service-text-col h2 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    color: #9a674f;
    margin-top: 0;
}

.service-text-col p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.service-image-col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image-col1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image-col2 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image-col3 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======== Enquire Now Form Section ======== */
.enquire-form-section {
    background-color: #f7fdff;
    /* हल्का बेज रंग */
    padding: 40px 20px;
}

.enquire-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.enquire-container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    color: #9a674f;
}

.enquire-container form {
    margin-top: 40px;
    text-align: left;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #9a674f;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.form-footer {
    margin-top: 40px;
    text-align: center;
}

.privacy-text {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
}

.privacy-text a {
    color: #9a674f;
    text-decoration: underline;
}

.btn-submit {
    background-color: #daa520;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #daa520;
    transform: translateY(-3px);
}

/* ======== Contact Page: Hero Section Styling ======== */
.contact-hero {
    height: auto;
    min-height: 60vh;
    /* A bit taller than the services hero */
    padding: 60px 20px;
    background-position: center 30%;
    /* Moves the image slightly up */
}

.contact-hero-content {
    max-width: 900px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-hero-content h1 {
    font-family: "Trirong", serif;
    font-size: 56px;
    /* Slightly larger font */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    /* Constrain the width of the paragraph */
    margin: 20px auto 0 auto;
    /* Center the paragraph */
}

/* Specific styling for the wavy divider on this page */
.contact-hero-content .divider {
    color: white;
    /* Make the divider white */
    font-size: 24px;
    margin: 20px 0;
}

/* ======== Venue Card Contact Info Styling ======== */
.venue-contact-info {
    margin: 30px 0;
    /* Upar neeche thoda space */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Sabhi items ko beech mein laane ke liye */
    gap: 15px;
    /* Phone aur email ke beech ka space */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Icon aur text ke beech ka space */
}

.contact-item i {
    font-size: 20px;
}

/* Dark background wale card ke liye icon aur link ka rang */
.dark-bg .contact-item i,
.dark-bg .contact-item a {
    color: white;
}

/* Light background wale card ke liye icon aur link ka rang */
.light-bg .contact-item i {
    color: #9a674F;
}

.light-bg .contact-item a {
    color: #333;
}

/* Link (a tag) ki extra styling hatane ke liye */
.contact-item a {
    font-size: 16px;
    font-weight: normal;
    /* Isko normal rakhenge */
    text-decoration: none;
    /* Neeche di gayi properties button styling ko override karengi */
    display: inline;
    padding: 0;
    margin: 0;
    max-width: none;
    border-radius: 0;
    border: none;
    background-color: transparent;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffc107;
    /* Hover par peela rang */
    transform: none;
    /* Button wala hover effect hataya */
}

.venue-social-icon a:hover {
    color: #ffc107;
    /* Hover par peela rang */
}

.dark-bg .venue-social-icon a {
    color: white;
}

/* Light background wale card ke liye icon ka rang */
.light-bg .venue-social-icon a {
    color: #9a674F;
    /* Theme ka brown rang */
}

.venue-social-icon a {
    font-size: 36px;
    /* Icon ka size */
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-category-title {
  font-size: 28px;
  color: #9a674F;
  text-align: center;
  margin: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
}






/* ================================== */
/* ====== COMING SOON STYLES ====== */
/* ================================== */

/* हीरो सेक्शन को पूरी स्क्रीन पर फैलाएं */
.coming-soon-hero {
  height: calc(100vh - 82px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333; /* टेक्स्ट का रंग गहरा कर दिया */
  
  /* बैकग्राउंड को सफेद कर दिया, जैसा इमेज में है */
  background-color: #ffffff; 
  /* बैकग्राउंड इमेज हटा दी गई */
}

.coming-soon-hero .hero-content {
  /* बैकग्राउंड कलर हटा दिया */
  padding: 40px 20px;
  max-width: 600px;
  /* एनीमेशन */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.5s ease-out forwards;
}

/* लोगो की स्टाइलिंग */
.coming-soon-logo {
    height: 80px; /* लोगो का साइज़ */
    margin-bottom: 30px;
}

.coming-soon-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif; /* इमेज से मिलता-जुलता फ़ॉन्ट */
  letter-spacing: 1px;
}

/* टैगलाइन की स्टाइलिंग */
.coming-soon-hero .tagline {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 40px 0;
  font-family: 'Poppins', sans-serif;
  opacity: 0.9;
}

/* संपर्क जानकारी की स्टाइलिंग */
.contact-info {
    margin-top: 40px;
    border-top: 1px solid #ddd; /* ऊपर एक लाइन */
    padding-top: 30px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
}

/* नेविगेशन लिंक्स को नॉन-क्लिकेबल बनाने के लिए */
.nav-links a, .btn-reservations, .logo {
  cursor: default;
  pointer-events: none;
}

.nav-links li.dropdown:hover > .dropdown-menu {
    display: none;
}

/* एनीमेशन के लिए कीफ्रेम */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* मोबाइल के लिए टेक्स्ट का साइज़ थोड़ा छोटा करें */
@media (max-width: 768px) {
  .coming-soon-hero h1 {
    font-size: 40px;
  }
  .coming-soon-hero .tagline {
    font-size: 20px;
  }
  .contact-info p {
    font-size: 14px;
  }
}