:root {
    /* HC Palette */
    --primary-color: #c49b63;
    /* Gold/Tan */
    --primary-color-dark: #94713B;
    /* Darker Gold for accessibility (Light BG) */
    --secondary-color: #a88350;
    /* Darker Gold for hover */
    --dark-bg: #000000;
    --section-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-color-dark: #b0b0b0;
    /* For dark backgrounds */
    --text-color-light: #444444;
    /* For light backgrounds */
    --heading-color-dark: #ffffff;
    --heading-color-light: #222222;

    --nav-bg-scrolled: rgba(0, 0, 0, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

.text-gold {
    color: var(--primary-color) !important;
}

.text-gold-dark {
    color: var(--primary-color-dark) !important;
}

/* Hide Scrollbar Globally */
::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color-dark);
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    /* 16px Standard */
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    max-width: 70ch;
    /* Optimal line length for reading */
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--primary-color) !important;
}

.text-gold {
    color: var(--primary-color) !important;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--heading-color-light);
    /* Default for light sections */
}

.section-title.dark-mode {
    color: var(--heading-color-dark);
}

.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.4);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(196, 155, 99, 0.4);
}

/* Navbar */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2001;
    /* Ensure header is above menu overlay (z-index 2000) */
    padding: 1.5rem 0;
    transition: background 0.4s ease, padding 0.4s ease;
    height: 100px;
    /* Fixed height for calculations */
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: var(--nav-bg-scrolled);
    padding: 0.5rem 0;
    height: 80px;
    /* Reduced height on scroll */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    /* Force width */
    max-width: 1200px;
    /* Constrain max width */
    margin: 0 auto;
    /* Center the container */
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    /* Above menu */
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 75px;
}

.cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    margin-right: 2rem;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    /* Above menu */
}

#menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.menu-text {
    display: block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Slide-in Menu */
/* Slide-in Menu (Glass) */
/* Sidebar Menu Overlay */
#fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    /* Transparent dark for overlay */
    backdrop-filter: blur(8px);
    /* Frosty effect for the rest of BG */
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    /* Ensure it is above everything including styled header */
    visibility: hidden;
    opacity: 0;
    /* Removed transform/flex as this is just the container/overlay */
}



.fullscreen-nav-links a:hover {
    color: var(--primary-color);
}

/* Fullscreen Menu Links */
/* Fullscreen Menu Links - Scrollable Container */

/* Sub-Menu Navigation */
/* Sub-Menu Navigation */
.sub-menu-nav {
    background-color: var(--dark-bg);
    /* Black BG as requested */
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem !important;
    /* Override mb-5 if needed */
}

.sub-menu-nav .nav-item {
    margin: 0 !important;
    /* Remove legacy margins */
}

.sub-menu-nav .nav-link {
    color: #ffffff;
    /* White text as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sub-menu-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.sub-menu-nav .nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sub-menu-nav .nav-link h6 {
    color: inherit !important;
    /* Ensure heading inherits white/gold text */
}

.menu-section-light .sub-menu-nav .nav-link:not(.active) {
    color: #cccccc;
    /* Make sure text is visible if on light BG but inside black pill */
}


.fullscreen-nav-links {
    list-style: none;
    margin: 0;
    flex: 1;
    /* Take all available space */
    overflow-y: auto;
    /* Scrollable */
    padding: 25px 0 25px 4rem;
    /* 25px gaps, left padding preserved */
    /* 125px top logic moved to parent padding for clipping */
    width: 100%;
    /* Hide scrollbar for Chrome/Safari/Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.fullscreen-nav-links::-webkit-scrollbar {
    display: none;
}

.fullscreen-nav-links li {
    margin: 1.5rem 0;
    overflow: hidden;
}

.fullscreen-nav-links a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    /* Reduced from 3.5rem */
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.2;
    text-align: left;
}

.fullscreen-nav-links a:hover {
    color: var(--primary-color);
}

/* Hamburger Animation */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger-icon span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Transform to X when menu-toggle has active class */
#menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

#menu-toggle.active .hamburger-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Ensure menu text fades out */
/* Menu text stays visible but changes */
#menu-toggle.active .menu-text {
    opacity: 1;
    color: var(--primary-color);
    /* Highlight text when open */
    transition: all 0.3s;
}

/* Menu Panel (Sidebar) */
.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    /* Half screen on desktop */
    min-width: 400px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Very slightly dark frosted glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* Solid Black Background */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* Left align items */
    padding: 100px 0 0 0;
    /* Header height padding for clip */
    /* Reset padding, handled by children */
    transform: translateX(100%);
    /* Start off-screen */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-footer {
    flex-shrink: 0;
    /* Don't shrink */
    margin-bottom: 25px;
    /* 25px visible above bottom as requested */
    margin-left: 4rem;
    /* Align layout */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* Wrap on small screens */
    gap: 2rem;
    text-align: left;
    color: #ccc;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: calc(100% - 6rem);
    /* 100% - left margin - some right buffer */
}

.menu-contact-info {
    flex: 1;
    min-width: 150px;
}

.menu-contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.menu-contact-info a {
    color: #fff;
    transition: color 0.3s;
}

.menu-contact-info a:hover {
    color: var(--primary-color);
}

/* Add spacing for icons */
.menu-footer i {
    margin-right: 0.5rem;
    width: 20px;
    /* Fixed width for alignment */
    margin-right: 0.5rem;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
}

.menu-socials i {
    margin-right: 0;
    /* No margin for standalone icons */
    font-size: 1.2rem;
    /* Larger icons */
    width: 25px;
}

.menu-socials {
    flex: 1;
    min-width: 50px;
    /* Reduced width for icons only */
    margin-top: 0;
    /* Remove top margin */
    display: grid;
    grid-template-columns: repeat(2, auto);
    /* 2 columns */
    justify-content: end;
    /* Align grid to right */
    gap: 1rem;
    align-items: center;
}

.menu-socials a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.menu-socials a:hover {
    color: #fff;
    text-decoration: underline;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    /* Increased weight */
    text-transform: uppercase;
    font-size: 1rem;
    /* Increased size 14px -> 16px */
    letter-spacing: 1.5px;
    /* More breathing room */
    opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    opacity: 1;
}

/* Hero Section (Video) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Ensure video doesn't spill out */
    padding-top: 80px;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Hero Actions (Buttons) */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    /* Safety wrap for desktop */
}

.btn-text-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.btn-text-link:hover {
    color: var(--primary-color);
}

/* Standard Page Hero */
.page-hero {
    height: 50vh;
    /* Consistent height for all subpages */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 0;
    /* Remove bottom margin if any */
    padding-top: 80px;
    /* Compensation for fixed navbar */
}

/* Overlay for text readability */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Consistent Dark Overlay */
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Page Hero */
.page-hero {
    height: 50vh;
    /* Consistent height for all subpages */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 0;
    padding-top: 80px;
}

/* Overlay for text readability */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 6rem 0;
}

section.light-bg {
    background-color: var(--light-bg);
    color: var(--text-color-light);
}

section.light-bg h2,
section.light-bg h3 {
    color: var(--heading-color-light);
}

/* Forms */
.form-container {
    background: #fff;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    /* Slightly wider */
    margin: 0 auto;
    border-top: 5px solid var(--primary-color);
}

.form-group label {
    color: var(--heading-color-light);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.form-control {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0;
    /* Square edges for premium feel */
    color: #333;
    padding: 1.2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: none;
}

/* Footer */
footer {
    background: #0b0b0b;
    padding: 6rem 0 2rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Menu Page Styles */
.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f9f9f9;
    /* Very light gray hover */
    cursor: default;
}

/* Veg/Non-Veg/Vegan/Egg Indicators */
.food-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid;
    padding: 2px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    box-sizing: border-box;
}

/* Default Dot (Veg/Egg) */
.food-mark::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Veg: Green Circle */
.food-mark.veg {
    border-color: #008000;
}

.food-mark.veg::after {
    background-color: #008000;
}

/* Egg: Yellow Circle */
.food-mark.egg {
    border-color: #DAA520;
    /* GoldenRod */
}

.food-mark.egg::after {
    background-color: #DAA520;
}

/* Non-Veg: Brown Triangle */
.food-mark.non-veg {
    border-color: #8B0000;
}

.food-mark.non-veg::after {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid #8B0000;
    border-radius: 0;
    background-color: transparent;
}

/* Menu Filter Buttons */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #222;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Vegan: Green V */
.food-mark.vegan {
    border-color: #008000;
}

.food-mark.vegan::after {
    content: 'V';
    color: #008000;
    background: transparent;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    border-radius: 0;
    width: auto;
    height: auto;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    /* Subtle movement on hover */
}

/* Delivery Buttons */
.btn-delivery {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
    border: none;
}

.btn-delivery:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-swiggy {
    background-color: #FC8019;
    /* Swiggy Orange */
}

.btn-zomato {
    background-color: #CB202D;
    /* Zomato Red */
}

.footer-bottom {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    text-align: left;
}

.footer-left {
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}



/* Mobile & Helpers */
.hamburger {
    display: block;
    display: block;
    /* Always visible */
    cursor: pointer;
    margin-left: 1rem;
    /* Spacing from CTA */
}

.hamburger span {
    background: #fff;
}

/* SMALL MOBILE SPECIFIC (< 576px) */
@media (max-width: 576px) {
    .cta-button {
        display: none !important;
        /* Hide ONLY on small screens */
    }
}

@media (max-width: 992px) {
    /* SCREENS < 992px (Tablets, Phones) */

    /* RESET SPACING */
    section {
        padding: 4rem 0 !important;
    }

    .container {
        padding: 0 1rem;
        /* Reduced padding to shift content left */
    }

    /* TYPOGRAPHY SCALING */
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.75rem !important;
    }

    h4 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 2rem !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero p {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100%;
        align-items: center !important;
        /* Center align buttons */
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-text-link {
        width: 100%;
        max-width: 280px;
        /* Nice max-width for mobile buttons */
        text-align: center;
        margin: 0 !important;
        /* Reset margins */
        display: block;
        /* Ensure block for width to work */
    }

    .navbar {
        height: 70px;
        padding: 0.5rem 0;
    }

    .navbar.scrolled {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .navbar.scrolled .logo img {
        height: 35px;
    }

    .cta-button {
        /* display: none !important; REMOVED - handled in smaller breakpoint */
        padding: 0.5rem 1rem;
        /* Adjust padding for tablet if needed */
        font-size: 0.85rem;
    }

    .hamburger {
        display: block;
        /* Redundant but safe */
    }

    .menu-text {
        display: none;
    }

    /* MOBILE MENU OVERRIDES */
    .menu-content {
        width: 100%;
        min-width: 0;
    }

    .fullscreen-nav-links {
        padding-left: 2rem;
    }

    .menu-footer {
        margin-left: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 75px !important;
        /* 75px per user request for mobile */
    }

    .menu-socials {
        justify-content: flex-start;
    }

    /* MARQUEE FIXES */
    .marquee-outer {
        transform: translateY(-50%) !important;
        /* Keep vertical align, remove rotate/scale */
        width: 100% !important;
        overflow: hidden !important;
        left: 0 !important;
    }

    .marquee-wrapper,
    .marquee-wrapper.hollow {
        margin: 0 !important;
        /* Reset margins */
        width: 100%;
        max-width: 100%;
    }

    .marquee-track span,
    .marquee-track-reverse span,
    .marquee-wrapper.hollow .marquee-track span.text-hollow,
    .marquee-wrapper.hollow .marquee-track span.text-solid {
        font-size: 2.5rem !important;
        gap: 2rem;
    }

    /* FOOTER & LAYOUT */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-left {
        text-align: center;
    }

    .grid-2x2,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .chessboard-grid {
        grid-template-columns: 1fr !important;
    }

    /* CHESSBOARD MOBILE COLORS */
    .chessboard-item:nth-child(odd) {
        background-color: #fff;
    }

    .chessboard-item:nth-child(even) {
        background-color: #efefef;
    }
}

/* UI/UX Utility Classes */
.text-center {
    text-align: center;
}

.center-text {
    text-align: center;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    /* Lift effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    /* Deep shadow */
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* 2x2 Grid Layout */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.2s ease;
    display: inline-block;
}


/* Lightbox Styles */
#lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#lightbox-modal.active {
    display: flex;
    opacity: 1;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#lightbox-modal.active #lightbox-image {
    transform: scale(1);
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}

#lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-trigger {
    cursor: pointer;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    padding: 0 20px;
    z-index: 10001;
    user-select: none;
    transition: color 0.2s;
}

.lightbox-nav:hover {
    color: var(--primary-color);
}

#lightbox-prev {
    left: 20px;
}

#lightbox-next {
    right: 20px;
}

/* Footer Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Footer Credits */
.kryotek-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.kryotek-link:hover {
    color: #ff0000 !important;
}

/* About Page Premium Styles */
.philosophy-card,
.format-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s;
    border: 1px solid #333;
    color: #fff;
}

.philosophy-card:hover,
.format-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.philosophy-card p,
.format-card p {
    color: #bbb;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    transition: background 0.2s;
}

.faq-header:hover {
    background: #2a2a2a;
}

.faq-header h3,
.faq-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #1a1a1a;
}

.faq-body p {
    padding: 1.5rem;
    margin: 0;
    color: #bbb;
    border-top: 1px solid #333;
    line-height: 1.6;
}

.faq-item.active .faq-body {
    max-height: 500px;
}

/* Dark Section Overrides */
.dark-section {
    background: #111;
    color: #fff;
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: #fff;
}

.dark-section p {
    color: #bbb;
}

.counter-box p {
    color: #ddd;
    font-weight: 500;
}

/* Light Menu Section (Global) */
.menu-section-light {
    background-color: #fcfbfb;
    /* Very subtle warmth */
    color: #444;
}

.menu-section-light .section-title {
    color: #222;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.menu-section-light h1,
.menu-section-light h2,
.menu-section-light h3,
.menu-section-light h4,
.menu-section-light h5,
.menu-section-light h6 {
    color: #222;
}

.menu-section-light .text-body {
    color: #666 !important;
}

/* Premium Tab Navigation */
.menu-section-light .nav-pills {
    gap: 1rem;
}

.menu-section-light .nav-pills .nav-link {
    color: #555;
    background: #fff;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-section-light .nav-pills .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
}

.menu-section-light .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(196, 155, 99, 0.3);
}

.menu-section-light .nav-pills .nav-link img {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu-section-light .nav-pills .nav-link.active img,
.menu-section-light .nav-pills .nav-link:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* Enhanced Menu Item Card */
.menu-item-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 155, 99, 0.15);
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-item-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.menu-item-card:hover .menu-item-img {
    border-color: var(--primary-color);
}

.menu-item-img img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s;
}

.menu-item-card:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-details {
    flex: 1;
    text-align: left;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(196, 155, 99, 0.1);
}

/* Diet Icons */
.icon-veg,
.icon-non-veg {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid;
    padding: 2px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.icon-veg {
    border-color: #28a745;
}

.icon-veg::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-non-veg {
    border-color: #dc3545;
}

.icon-non-veg::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #dc3545;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
    opacity: 0.8;
}

/* Contact Page Cards */
.contact-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 155, 99, 0.15);
    border-color: var(--primary-color);
    background: #222;
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(196, 155, 99, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.contact-card:hover i {
    background: var(--primary-color);
    color: #fff !important;
}

.contact-card h3,
.contact-card h4 {
    color: #fff;
    font-size: 1.3rem;
    /* Adjusted for hierarchy */
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.contact-card p,
.contact-card .text-muted,
.contact-card .text-body {
    color: #bbb !important;
}

/* Chessboard Grid Layout */
.chessboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    /* Connected */
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.chessboard-item {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.chessboard-item h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.chessboard-item p {
    font-size: 0.9rem;
    max-width: none;
    margin: 0;
}

.chessboard-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect */
.chessboard-item:hover {
    z-index: 2;
    background: var(--primary-color) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.chessboard-item:hover h5,
.chessboard-item:hover p,
.chessboard-item:hover i {
    color: #fff !important;
}

.chessboard-item:hover i {
    transform: scale(1.2);
}

/* Desktop: 3 Columns (Standard Chessboard Pattern A B A / B A B) */
@media (min-width: 992px) {
    .chessboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chessboard-item:nth-child(odd) {
        background-color: #fff;
    }

    .chessboard-item:nth-child(even) {
        background-color: #efefef;
    }
}

/* Tablet: 2 Columns */
@media (min-width: 768px) and (max-width: 991px) {
    .chessboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Logic for 2-column checkerboard: 
       Items: 1(W) 2(G)
              3(G) 4(W)
              5(W) 6(G)
       Pattern: 1, 4, 5, 8... are White (Based on 0-index: 0, 3, 4, 7)
       It's complex to do purely with nth-child unless we accept stripes
       Let's stick to simple alternating color for simplicity or
       nth-child(4n+1) and (4n+4) for one color?
       1, 4, 5, 8
    */
    .chessboard-item:nth-child(4n+1),
    .chessboard-item:nth-child(4n+4) {
        background-color: #fff;
    }

    .chessboard-item:nth-child(4n+2),
    .chessboard-item:nth-child(4n+3) {
        background-color: #efefef;
    }
}

/* Mobile: 1 Column */
@media (max-width: 767px) {
    .chessboard-item:nth-child(odd) {
        background-color: #fff;
    }

    .chessboard-item:nth-child(even) {
        background-color: #efefef;
    }
}

/* Hollow Marquee Style (No BG, Hollow Text) */
.marquee-wrapper.hollow {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    /* No rotation for this one unless requested, easier to read as separator */
    padding: 1rem 0;
    border: none !important;
    /* Removed borders per user request */
}

.marquee-wrapper.hollow .marquee-track span.text-hollow,
.marquee-wrapper.hollow .marquee-track-reverse span.text-hollow {
    color: transparent !important;
    -webkit-text-stroke: 1px #ccc;
    /* Lighter stroke */
    font-family: var(--font-heading);
    font-size: 5rem;
    opacity: 0.13;
    /* Adjusted to 13% as requested */
    text-shadow: none;
    font-weight: 800;
}

.marquee-wrapper.hollow .marquee-track span.text-solid,
.marquee-wrapper.hollow .marquee-track-reverse span.text-solid {
    color: #999 !important;
    /* Lighter solid gray */
    -webkit-text-stroke: 0;
    font-family: var(--font-heading);
    font-size: 5rem;
    opacity: 0.13;
    /* Adjusted to 13% as requested */
    text-shadow: none;
    font-weight: 800;
}

/* Custom Scrollbar for Gallery */
.custom-scrollbar {
    overflow-x: auto !important;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #222;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #222;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 15px rgba(196, 155, 99, 0.5);
    transform: translateY(-5px);
}

/* Form Validation Errors */
.form-error {
    color: #dc3545;
    /* Red error color */
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.char-counter {
    font-size: 0.75rem;
    margin-top: 0.25rem;

    /* Mobile Logo Adjustment */
    @media (max-width: 768px) {
        .logo img {
            height: 90px !important;
        }
    }
}

/* Flatpickr Custom Theme (Gold) */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #1a1a1a !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: #1a1a1a !important;
}

.flatpickr-months {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333 !important;
}

.flatpickr-months .flatpickr-month {
    color: #fff !important;
    background: #1a1a1a !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month input.cur-year:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.flatpickr-weekdays {
    background: #1a1a1a !important;
}

span.flatpickr-weekday {
    color: #888 !important;
    background: #1a1a1a !important;
}

.flatpickr-day {
    color: #ccc !important;
}

.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus {
    background: rgba(196, 155, 99, 0.2) !important;
    /* Primary color with opacity */
    border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected,
.flatpickr-day.today.selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-day.today {
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-day.today:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-time {
    background: #1a1a1a !important;
    border-top: 1px solid #333 !important;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: #ccc !important;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: #ccc !important;
}

.flatpickr-time input {
    color: #fff !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #fff !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: #fff !important;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Floating Social Media Sidebar */
.floating-social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.floating-social-sidebar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
    border-right: none;
}

.floating-social-sidebar a:hover {
    width: 60px;
    color: #fff;
    font-size: 1.5rem;
}

.floating-social-sidebar a.social-facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.floating-social-sidebar a.social-instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.floating-social-sidebar a.social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.floating-social-sidebar a.social-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.floating-social-sidebar a.social-email:hover {
    background: #EA4335;
    border-color: #EA4335;
}

.floating-social-sidebar a.social-phone:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Utility class to disable scrolling */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}