/* ============================================
   YUMMY THATTUKADA — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --green:        #1a5c1a;
    --green-light:  #2d7a2d;
    --green-dark:   #0e380e;
    --gold:         #c9960c;
    --gold-light:   #f0c040;
    --red:          #c0392b;
    --cream:        #fdf9f0;
    --cream-dark:   #f0e6cc;
    --dark:         #1a1a1a;
    --text:         #2c1810;
    --text-muted:   #7a6255;
    --white:        #ffffff;
    --shadow:       0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:    0 10px 40px rgba(0,0,0,0.18);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', Arial, sans-serif;
    --font-accent:  'Dancing Script', cursive;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--green-dark); color: var(--white); }
.section--cream { background: var(--cream-dark); }

.section-label {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.section-title { color: var(--green-dark); margin-bottom: 14px; }
.section--dark .section-title { color: var(--white); }
.section-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 2px;
    margin: 0 auto 40px;
}
.section-line--left { margin-left: 0; }
.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.section--dark .section-desc { color: rgba(255,255,255,0.72); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(8, 32, 8, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.navbar.solid {
    background: var(--green-dark);
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img {
    height: 56px;
    width: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(201,150,12,0.5);
}
.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
}
.navbar__logo-text span { color: var(--gold); }

.navbar__right { display: flex; align-items: center; gap: 24px; }
.navbar__links { display: flex; gap: 28px; align-items: center; }
.navbar__links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.lang-toggle {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    white-space: nowrap;
}
.lang-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 42px;
    background: rgba(201,150,12,0.15);
    border: 1.5px solid rgba(201,150,12,0.5);
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
}
.navbar__hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
    display: none;
    flex-direction: column;
    background: var(--green-dark);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.navbar__mobile a {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.3s;
}
.navbar__mobile a:last-of-type { border-bottom: none; }
.navbar__mobile a:hover,
.navbar__mobile a.active { color: var(--gold); }
.navbar__mobile .lang-toggle { margin-top: 16px; align-self: flex-start; }
.navbar__mobile.open { display: flex; }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../foodpictures/WhatsApp%20Image%202026-04-26%20at%202.37.08%20PM%20(1).jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 10s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(8,35,8,0.85) 0%,
        rgba(20,75,20,0.60) 45%,
        rgba(8,35,8,0.90) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 100px 24px 60px;
    max-width: 820px;
}
.hero__badge {
    display: inline-block;
    background: rgba(201,150,12,0.18);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 3px 24px rgba(0,0,0,0.4);
    line-height: 1.1;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 14px;
}
.hero__location {
    color: rgba(255,255,255,0.58);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero__location svg { width: 14px; height: 14px; fill: var(--gold); }
.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}


/* ============================================
   SERVICES STRIP
   ============================================ */
.services { background: var(--green-dark); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}
.services__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}
.services__item:last-child { border-right: none; }
.services__item:hover { background: rgba(255,255,255,0.04); }
.services__icon {
    width: 52px; height: 52px;
    background: rgba(201,150,12,0.12);
    border: 1px solid rgba(201,150,12,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.services__icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.services__text h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 3px;
}
.services__text p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }


/* ============================================
   ABOUT SNAP (HOME)
   ============================================ */
.about-snap { padding: 90px 0; background: var(--cream); }
.about-snap__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-snap__text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 1.03rem;
    line-height: 1.85;
}
.about-snap__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 32px;
}
.tag {
    background: var(--cream-dark);
    border: 1px solid rgba(26,92,26,0.18);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.about-snap__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}
.about-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.06); }
.about-img--tall { grid-row: span 2; }
.about-img--tall img { height: 100%; }


/* ============================================
   FEATURED DISHES
   ============================================ */
.featured { padding: 90px 0; background: var(--cream-dark); }
.featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.dish-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish-card__img { height: 210px; overflow: hidden; }
.dish-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.dish-card:hover .dish-card__img img { transform: scale(1.08); }
.dish-card__body { padding: 16px 16px 20px; text-align: center; }
.dish-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.dish-card__ml {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.dish-card__cat {
    display: inline-block;
    background: var(--cream-dark);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* ============================================
   HOURS BANNER
   ============================================ */
.hours-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.hours-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hours-banner__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.hours-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}
.hours-item svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.hours-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2px;
}
.hours-item p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.hours-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.18); }


/* ============================================
   WHATSAPP CTA
   ============================================ */
.wacta { padding: 90px 0; background: var(--cream); text-align: center; }
.wacta__inner { max-width: 600px; margin: 0 auto; }
.wacta__icon {
    width: 76px; height: 76px;
    background: rgba(37,211,102,0.1);
    border: 2px solid rgba(37,211,102,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    animation: waPulse 2.5s ease-in-out infinite;
}
.wacta__icon svg { width: 38px; height: 38px; fill: #25d366; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.wacta h2 { color: var(--green-dark); margin-bottom: 12px; }
.wacta p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }
.wacta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 44px;
    background: var(--cream);
    clip-path: ellipse(54% 100% at 50% 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb__sep { opacity: 0.4; }


/* ============================================
   MENU PAGE
   ============================================ */
.menu-section { padding: 60px 0 90px; }
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}
.menu-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.menu-tab:hover,
.menu-tab.active {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26,92,26,0.3);
}
.menu-category { display: none; }
.menu-category.active { display: block; }
.menu-category__header {
    text-align: center;
    margin-bottom: 36px;
}
.menu-category__header h3 { color: var(--green-dark); }
.menu-category__header p { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card__img { height: 195px; overflow: hidden; }
.menu-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.menu-card:hover .menu-card__img img { transform: scale(1.08); }
.menu-card__body { padding: 16px; text-align: center; }
.menu-card__name {
    font-family: var(--font-heading);
    color: var(--green-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}
.menu-card__ml { font-family: var(--font-accent); color: var(--gold); font-size: 0.88rem; }

.menu-cta {
    margin-top: 60px;
    padding: 44px 36px;
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(26,92,26,0.3);
    text-align: center;
}
.menu-cta h3 { color: var(--green-dark); margin-bottom: 8px; }
.menu-cta p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.95rem; }


/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section { padding: 60px 0 90px; }
.gallery-grid {
    columns: 4 200px;
    column-gap: 14px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,35,8,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.gallery-item__overlay svg {
    width: 44px; height: 44px;
    stroke: var(--white); fill: none; stroke-width: 1.5;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item__overlay { background: rgba(8,35,8,0.5); }
.gallery-item:hover .gallery-item__overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
    position: absolute;
    top: 18px; right: 22px;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.25s;
    line-height: 1;
    border: none;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: var(--white);
    cursor: pointer;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.25s;
    border: none;
    font-size: 1.4rem;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.24); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    letter-spacing: 1px;
    white-space: nowrap;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 70px 0; }
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-story__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.about-story__img-wrap img {
    width: 100%; height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-story__badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--green-dark);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow);
}
.about-story__badge .num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.about-story__badge .lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-story__text { padding-left: 12px; }
.about-story__text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 1.03rem;
}

.values-section { padding: 80px 0; background: var(--cream-dark); text-align: center; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card__icon {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.value-card__icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.value-card h3 { color: var(--green-dark); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

.thattukada-section {
    padding: 80px 0;
    background: var(--green-dark);
    text-align: center;
}
.thattukada-section h2 { color: var(--white); margin-bottom: 20px; }
.thattukada-section p {
    color: rgba(255,255,255,0.75);
    max-width: 720px;
    margin: 0 auto 14px;
    font-size: 1.02rem;
    line-height: 1.85;
}
.thattukada-section .gold { color: var(--gold); font-style: italic; }


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 60px 0 90px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.contact-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-card__body h4 {
    font-family: var(--font-heading);
    color: var(--green-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.contact-card__body p,
.contact-card__body a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    transition: color 0.3s;
}
.contact-card__body a:hover { color: var(--green); }

.wa-card {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
}
.wa-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.wa-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 16px; }
.wa-card__btns { display: flex; flex-direction: column; gap: 10px; }
.wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.3s;
}
.wa-btn:hover { background: rgba(255,255,255,0.28); }
.wa-btn svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

.contact-map { position: sticky; top: 88px; }
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }
.map-label {
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}
.map-label svg { width: 20px; height: 20px; stroke: var(--green); fill: none; flex-shrink: 0; }
.map-label p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.map-label strong { color: var(--green-dark); display: block; font-size: 0.92rem; margin-bottom: 2px; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(201,150,12,0.4);
    margin-bottom: 16px;
}
.footer__brand-name {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.footer__brand-name span { color: var(--gold); }
.footer__brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 290px;
    margin-bottom: 22px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__social a svg { width: 16px; height: 16px; fill: var(--white); }

.footer__col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.5px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    color: rgba(255,255,255,0.58);
    font-size: 0.85rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer__links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.footer__links a:hover { color: var(--white); }

.footer__info-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.footer__info-item svg {
    width: 15px; height: 15px;
    stroke: var(--gold); fill: none;
    margin-top: 3px; flex-shrink: 0;
    stroke-width: 2;
}
.footer__info-item span {
    color: rgba(255,255,255,0.58);
    font-size: 0.83rem;
    line-height: 1.55;
}
.footer__info-item a { color: rgba(255,255,255,0.58); transition: color 0.3s; }
.footer__info-item a:hover { color: var(--gold); }

.footer__bottom {
    padding: 18px 0;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    border-top: none;
}
.footer__bottom span { color: var(--gold); }


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* ============================================
   RTL / ARABIC SUPPORT
   ============================================ */
[dir="rtl"] .section-line--left { margin-right: 0; margin-left: auto; }
[dir="rtl"] .navbar__right { flex-direction: row-reverse; }
[dir="rtl"] .navbar__links { flex-direction: row-reverse; }
[dir="rtl"] .navbar__links a::after { left: auto; right: 0; }
[dir="rtl"] .services__item { flex-direction: row-reverse; }
[dir="rtl"] .hours-item { flex-direction: row-reverse; }
[dir="rtl"] .about-snap__text .section-label { text-align: right; }
[dir="rtl"] .hero__location { flex-direction: row-reverse; }
[dir="rtl"] .contact-card { flex-direction: row-reverse; }
[dir="rtl"] .contact-card:hover { transform: translateX(-6px); }
[dir="rtl"] .footer__links a::before { transform: scaleX(-1); }
[dir="rtl"] .footer__info-item { flex-direction: row-reverse; }
[dir="rtl"] .footer__brand p { text-align: right; }
[dir="rtl"] .footer__brand { text-align: right; }
[dir="rtl"] .about-story__text { padding-left: 0; padding-right: 12px; }
[dir="rtl"] .about-story__badge { right: auto; left: -20px; }
[dir="rtl"] .wa-btn { flex-direction: row-reverse; }
[dir="rtl"] .footer__social { justify-content: flex-start; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .featured__grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }
    .about-snap__grid { gap: 40px; }
    .about-story__grid { gap: 48px; }
    .contact-grid { gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .navbar__links { display: none; }
    .navbar__hamburger { display: flex; }

    .hero__btns { flex-direction: column; align-items: center; }
    .hero__btns .btn { width: 240px; justify-content: center; }

    .services__grid { grid-template-columns: 1fr; }
    .services__item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .services__item:last-child { border-bottom: none; }

    .about-snap__grid { grid-template-columns: 1fr; }
    .about-snap__images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
    }

    .featured__grid { grid-template-columns: repeat(2, 1fr); }

    .hours-banner__content { flex-direction: column; gap: 28px; }
    .hours-divider { display: none; }

    .about-story__grid { grid-template-columns: 1fr; }
    .about-story__img-wrap img { height: 300px; }
    .about-story__badge { bottom: -16px; right: 16px; }
    .about-story__text { padding-left: 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { position: static; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }

    .gallery-grid { columns: 2 140px; }

    .menu-tab { padding: 8px 16px; font-size: 0.76rem; }
}

@media (max-width: 480px) {
    .featured__grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2 100px; }
    .hero__title { font-size: 2.4rem; }
    .wacta__btns { flex-direction: column; align-items: center; }
    .wacta__btns .btn { width: 240px; justify-content: center; }
}

/* ============================================
   PRICE MENU
   ============================================ */

.price-menu {
    margin: 0 0 56px;
}

.price-menu__header {
    text-align: center;
    margin-bottom: 48px;
}

.price-menu__cols {
    columns: 3 260px;
    column-gap: 24px;
}

.price-cat {
    break-inside: avoid;
    margin-bottom: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,150,12,0.12);
}

.price-cat__head {
    background: var(--green);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-cat__head h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.price-cat__head .price-cat__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-cat__body {
    padding: 6px 0;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 9px 22px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s;
}

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

.price-item:hover { background: rgba(201,150,12,0.05); }

.price-item__name {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.price-item__dots {
    flex: 1;
    border-bottom: 1.5px dotted rgba(0,0,0,0.18);
    margin-bottom: 4px;
    min-width: 12px;
    flex-shrink: 0;
}

.price-item__price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-item__price.seasonal {
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
    font-size: 0.8rem;
}

.price-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .price-menu__cols { columns: 1; }
    .price-item__name { font-size: 0.85rem; }
}

.menu-cards-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}
