/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-maroon: #8B2635;
    --primary-dark: #6B1E2C;
    --secondary-green: #4A7C59;
    --accent-gold: #D4AF37;
    --cream-bg: #FAF7F2;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #E8E8E8;
    
    /* Typography */
    --font-primary: 'Georgia', serif;
    --font-secondary: 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 5%;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--black);
    background-color: var(--cream-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.containertwo {
    margin: 0 auto;
    padding: var(--container-padding);
}



img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   NAVIGATION
   ============================================ */

.menu {
  font-family: "Playwrite NZ Basic", cursive;
  font-optical-sizing: auto;
  font-weight: 500; /* choose 300–700 */
  font-style: normal;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
    font-family: "Playwrite NZ Basic", cursive;
    font-optical-sizing: auto;
    font-weight: 600; /* choose 300–700 */
    font-style: normal;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo h2 {
    font-family: var(--font-primary);
    color: var(--primary-maroon);
    font-size: 2rem;
    font-weight: 700;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--secondary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--black);
    font-size: 0.95rem;
    /* font-weight: 500; */
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--primary-maroon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-maroon), var(--accent-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-reserve {
    background: var(--primary-maroon);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-reserve::after {
    display: none;
}

.btn-reserve:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-maroon);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.8) 0%, rgba(74, 124, 89, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-maroon);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    transform: translateY(50%);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots span.active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

/* Fade Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary-maroon);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Title Section Hindi */

.flavours-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1rem;
    color: #C94141;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.leaf-divider {
    display: flex;
    justify-content: center;
    margin: 15px 0 25px;
}

.leaf-divider svg {
    opacity: 0.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
}

.about-text .section-label {
    display: block;
    text-align: left;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.about-text .lead {
    text-align: right;
    font-size: 1.2rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.8;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-green);
    font-weight: 600;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}


/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
    padding: var(--section-padding);
    background: var(--cream-bg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 38, 53, 0.2);
    border-color: #D4AF37;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(139, 38, 53, 0.3);
}

.philosophy-card:hover .icon-box {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-maroon));
}

.icon-box i {
    font-size: 2rem;
    color: var(--white);
}

.philosophy-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.philosophy-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   SPECIALS SECTION
   ============================================ */
.specials {
    padding: var(--section-padding);
    background: var(--white);
}

.specials-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.specials-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.special-card {
    min-width: 350px;
    background: var(--cream-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.special-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(139, 38, 53, 0.2);
    border-color: var(--accent-gold);
}

.special-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.special-card:hover .special-image img {
    transform: scale(1.15) rotate(2deg);
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.special-badge {
    background: var(--accent-gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.special-content {
    padding: 25px;
}

.special-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

.special-content p {
    color: var(--gray);
    line-height: 1.6;
}

.specials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.specials-nav:hover {
    background: var(--primary-maroon);
    color: var(--white);
}

.prev-special {
    left: 20px;
}

.next-special {
    right: 20px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: var(--section-padding);
    background: var(--cream-bg);
}

/* Menu Slider Wrapper */
.menu-slider-wrapper {
    margin-bottom: 60px;
    padding: 20px 0;
}

.menuSwiper {
    padding: 20px 0 60px 0;
}

/* Menu Slide Card */
.menu-slide-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
}

.menu-slide-card:hover {
    /* transform: translateY(-15px); */
    box-shadow: 0 20px 50px rgba(139, 38, 53, 0.2);
    border-color: var(--accent-gold);
}

/* Menu Card Image */
.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    width: 100%;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-slide-card:hover .menu-card-image img {
    transform: scale(1.15) scaleZ(0.5);
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.85), rgba(74, 124, 89, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-slide-card:hover .menu-card-overlay {
    opacity: 1;
}

.view-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.menu-slide-card:hover .view-text {
    transform: translateY(0);
}

/* Menu Card Content */
.menu-card-content {
    padding: 25px;
}

.menu-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-maroon);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.menu-slide-card:hover .menu-card-content h3 {
    color: var(--primary-dark);
}

.menu-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 40px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.menu-price {
    font-size: 1.6rem;
    color: var(--primary-maroon);
    font-weight: 700;
    font-family: var(--font-primary);
}

.menu-category {
    background: linear-gradient(135deg, var(--primary-maroon), var(--secondary-green));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation Buttons */
/* .menu-swiper-next,
.menu-swiper-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-swiper-next:hover,
.menu-swiper-prev:hover {
    background: var(--primary-maroon);
    transform: scale(1.1);
}

.menu-swiper-next::after,
.menu-swiper-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-maroon);
    transition: color 0.3s ease;
}

.menu-swiper-next:hover::after,
.menu-swiper-prev:hover::after {
    color: var(--white);
} */

/* Swiper Pagination */
.menu-swiper-pagination {
    bottom: 0 !important;
}

.menu-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    opacity: 1;
    transition: all 0.3s ease;
}

.menu-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-maroon);
    width: 35px;
    border-radius: 6px;
}

/* Traditional Menu (kept as fallback) */
.traditional-menu {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-category-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.menu-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-maroon);
    transition: left 0.5s ease;
    z-index: -1;
}

.menu-category-btn:hover::before,
.menu-category-btn.active::before {
    left: 0;
}

.menu-category-btn:hover,
.menu-category-btn.active {
    color: var(--white);
    border-color: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 38, 53, 0.3);
}

.menu-category-content {
    display: none;
}

.menu-category-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    /* background: linear-gradient(180deg, var(--primary-maroon), var(--accent-gold)); */
    transition: height 0.4s ease;
}

.menu-item:hover::before {
    height: 100%;
}

.menu-item:hover {
    box-shadow: 0 10px 35px rgba(139, 38, 53, 0.15);
    transform: translateX(8px) translateY(-5px);
    border-left-color: var(--accent-gold);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--black);
}

.price {
    font-size: 1.3rem;
    color: var(--primary-maroon);
    font-weight: 700;
}

.menu-item p {
    color: var(--gray);
    line-height: 1.6;
}



.swiper {
    margin-left: auto;
    margin-right: auto;
    /* position: relative; */
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    margin-bottom: 5px;
}


/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 38, 53, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.9), rgba(74, 124, 89, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay::after {
    content: 'View Dish';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay::after {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.prev-img {
    left: 30px;
}

.next-img {
    right: 30px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--cream-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-maroon);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary-maroon);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.95) 0%, rgba(74, 124, 89, 0.9) 100%);
}

.reservation-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.reservation-content .section-label {
    color: var(--accent-gold);
}

.reservation-content h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.reservation-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.reservation-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.15);
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
}

.form-group select {
    cursor: pointer;
    color: rgba(255,255,255,0.7);
}

.form-group select option {
    color: var(--black);
}

.btn-block {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-maroon);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.hours li {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.footer-bottom i {
    color: var(--primary-maroon);
}

/* Category Grid */
.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
    gap: 18px;
    margin: 50px auto 70px;
    max-width: 900px;
    justify-content: center;
}

.category-box {
    background: #C8E6F5;
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.category-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(27, 73, 101, 0.15);
    background: #B3DCF0;
}

.category-box.active {
    background: #5AB2D6;
    box-shadow: 0 4px 12px rgba(90, 178, 214, 0.3);
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1B4965;
}

.category-box.active .category-icon {
    color: #FFFFFF;
}

.category-box h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B4965;
    margin: 0;
    line-height: 1.3;
}

.category-box.active h3 {
    color: #FFFFFF;
}

/* Category Content */
.menu-category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category-content.active {
    display: block;
}

/* Menu Category Content */
.menu-category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category-content.active {
    display: block;
}

.category-title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #1B4965;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-description {
    text-align: center;
    color: #5A6C7D;
    font-size: 1rem;
    margin-bottom: 50px;
}

/* Menu Cards */
.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.menu-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE8D6 0%, #FDD5B1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 22px 20px;
    position: relative;
}

.menu-card-content h3 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #1B4965;
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-card-content p {
    color: #5A6C7D;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 44px;
    font-size: 0.9rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFB800;
    font-size: 0.85rem;
}

.freshness {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5A6C7D;
    font-size: 0.8rem;
}

.freshness i {
    color: #5A6C7D;
    font-size: 0.85rem;
}

.menu-card-price {
    font-size: 1.25rem;
    color: #1B4965;
    font-weight: 700;
    text-align: right;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .flavours-hindi {
        font-size: 1.2rem;
    }

    .leaf-divider svg {
        width: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .special-card {
        min-width: 280px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .reservation-content h2 {
        font-size: 2rem;
    }
    
    .reservation-form {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .flavours-hindi {
        font-size: 1rem;
    }
}



/* ============================================
   ENHANCED SCROLL ANIMATIONS
   ============================================ */

/* Hero Content Animation */
.hero-content {
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation for Cards */
.philosophy-card,
.special-card,
.menu-item,
.gallery-item {
    animation-fill-mode: both;
}

/* Smooth Page Load */
body {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   MOBILE RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .menu-slider-wrapper {
        margin-bottom: 40px;
    }
    
    .menu-slide-card {
        margin: 0 10px;
    }
    
    .menu-swiper-next,
    .menu-swiper-prev {
        width: 40px;
        height: 40px;
    }
    
    .menu-swiper-next::after,
    .menu-swiper-prev::after {
        font-size: 1rem;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU Acceleration for smooth animations */
.btn,
.nav-link,
.menu-slide-card,
.special-card,
.philosophy-card,
.gallery-item,
.menu-item {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
