/* ============================================================
   SHREE BHOJAN — MASTER STYLESHEET
   Merged from style.css + nav-styles.css (single source of truth).
   Duplicate/dead rules removed; each selector now appears once.
   ============================================================ */

/* ---------- Font Imports ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ----------
   --font-display  → all headings / brand name / titles
   --font-body     → paragraphs, menu items, buttons, nav
   --font-accent   → small decorative labels (gallery section titles)
   ---------------------------------- */
:root {
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cinzel', serif;

    --color-gold: #e0c31f;
    --color-gold-bright: #f5da49;
    --color-gold-soft: #f7df63;
    --color-bg: #0b0b1f69;
    --color-text: #ffffff;
}

/* ---------- Base Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    background-color: #090a0ae8;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
}

/* ============================================================
   SHARED PAGE FRAME
   (every section on the site uses .menu-page as its outer shell,
   with the kolam borders, background pattern, pillars, etc.)
   ============================================================ */
.menu-page {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-bg);
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    overflow: hidden;
    height: 1250px;
    content-visibility: auto;
    contain-intrinsic-size: 1250px;
    contain: layout paint style;
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/BG-Pttern-png-01-01.webp');
    background-size: min(913px, 100vw) auto;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
}

/* Kolam Border — used at the very top and very bottom of every
   section for a consistent temple-threshold feel. Rendered as a
   single full-width design (stretched edge-to-edge) instead of a
   repeating tile, so the motif always spans the full section width. */
.top-border,
.bottom-border {
    position: absolute;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    aspect-ratio: 5481 / 161;
    height: auto;
    background-image: url('images/kolam-png-01.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    opacity: 0.85;
    pointer-events: none;
}

.top-border {
    top: 0;
    filter: brightness(1.9);
}

.bottom-border {
    bottom: 0;
    filter: brightness(0.9);
    transform: rotate(180deg);
}

/* Pillar Base Style */
.pillar {
    position: absolute;
    bottom: -6px;
    height: 1270px;
    width: 1059px;
    z-index: 3;
    opacity: 0.6;
    filter: grayscale(1);
    pointer-events: none;
    transform: translateZ(0);
}

.pillar-left {
    left: -629px;
}

.pillar-right {
    right: -629px;
    transform: scaleX(-1) translateZ(0);
}

/* ============================================================
   NAVIGATION BAR
   Moved to nav-styles.css — import it in your HTML:
   <link rel="stylesheet" href="nav-styles.css">
   ============================================================ */

/* ============================================================
   HOME PAGE HERO
   ============================================================ */
.center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: clamp(10px, 3vw, 40px);
    width: 80%;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(0px, 0.5vw, 8px);
}

.main-logo-img {
    margin-top: -10px;
    height: clamp(160px, 20vw, 310px);
    width: clamp(160px, 20vw, 310px);
    filter: brightness(1.2) contrast(1.1);
}

.brand-name {
    margin-top: clamp(-60px, -4vw, -25px);
    color: var(--color-gold);
}

.brand-name h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: clamp(-10px, -1vw, -2px);
}

.sub-tag {
    font-family: var(--font-body);
    color: #fff;
    letter-spacing: 3px;
    font-size: 15px;
    margin-top: -8px;
    font-weight: 500;
    text-transform: uppercase;
}

.divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    gap: 15px;
}
.design {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.design.left {
    margin-right: 2px;
    margin-top: -6px;
    width: 102px;
}

.design.right {
    margin-left: 2px;
    margin-top: -6px;
    width: 102px;
}
/* Menu Title Section (big decorative "MENU" heading + motto) */
.menu-title {
    text-align: center;
}

.menu-title h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 13vw, 150px);
    margin-left: 8px;
    color: var(--color-gold);
    letter-spacing: -8px;
    line-height: 1;
    margin-top: 63px;
    margin-bottom: -25px;
}

.motto {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    margin: 24px 0;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-left: 0px;
}

.menu-title h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 30px;
    letter-spacing: 3px;
    margin-top: 30px;
    margin-left: 0px;
    font-weight: 500;
}

.health-icons {
    display: flex;
    justify-content: center;
    margin-top: -4px;
    margin-left: 39px;
}

.health-icons img {
    width: 900px;
    filter: brightness(1.2);
}

/* Hero Content */
.hanging-lights {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.hanging-lights-img {
    width: 100%;
    height: auto;
    margin-top: -201px;
    opacity: 0.7;
}
.hero-content {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.welcome-text {
    font-family: var(--font-display);
    font-size: 32px;
    color: #dbc027;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-hours {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-gold-bright);
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Pure Veg Badge */
.pure-veg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid #2e8b3d;
    border-radius: 20px;
    padding: 6px 16px;
    margin: clamp(6px, 1vw, 14px) auto;
    position: relative;
    z-index: 12;
}

.home-page .brand-name.has-veg-badge,
.brand-name.has-veg-badge {
    margin-top: clamp(6px, 1vw, 14px) !important;
}

.pure-veg-square {
    width: 16px;
    height: 16px;
    border: 2px solid #2e8b3d;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pure-veg-dot {
    width: 8px;
    height: 8px;
    background: #2e8b3d;
    border-radius: 50%;
}

.pure-veg-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--color-gold);
    color: #0d0d0d;
    border: 2px solid var(--color-gold);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--color-gold);
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.cta-button.secondary:hover {
    background: var(--color-gold);
    color: #0d0d0d;
}

/* Home Page Specific */
.home-page .center-content {
    margin-top: clamp(30px, 9vw, 120px);
}

.home-page .brand-name {
    margin-top: clamp(-100px, -7vw, -45px);
}

.home-page .logo-section.has-veg-badge-above {
    margin-bottom: clamp(-90px, -7vw, -35px);
}

.home-page .menu-title,
.home-page .health-icons {
    display: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page {
    background: var(--color-bg);
    position: relative;
    padding: 80px 70px 50px;
    color: #fff;
    height: auto;
    min-height: 1000px;
    justify-content: center;
    --contact-pillar-width: 1009px;
    --contact-pillar-height: 1990px;
    --contact-pillar-bottom: -2px;
    --contact-pillar-side: -619px;
    --contact-pillar-opacity: 0.3;
}

.about-page .pillar {
    width: var(--contact-pillar-width);
    height: var(--contact-pillar-height);
    bottom: var(--contact-pillar-bottom);
    opacity: var(--contact-pillar-opacity);
}

.about-page .pillar-left {
    left: var(--contact-pillar-side);
}

.about-page .pillar-right {
    right: var(--contact-pillar-side);
}

.about-content {
    max-width: 2000px;
    margin: 20px auto 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 60px);
    line-height: 0.95;
    color: var(--color-gold);
    margin-bottom: 34px;
    letter-spacing: 2px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.about-text-block {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 34px;
}

.about-description {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    max-width: 1500px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-principles {
    position: relative;
    overflow: hidden;
    max-width: 780px;
    margin: 42px auto;
    padding: 34px 42px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 18, 42, 0.88), rgba(8, 9, 24, 0.9));
    border: 1px solid rgba(245, 218, 73, 0.28);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-principles::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f5da49, transparent);
    opacity: 0.78;
}

.principles-title,
.story-title,
.principles-subtitle {
    font-family: var(--font-display);
    color: var(--color-gold-soft);
    text-align: center;
    letter-spacing: 1.6px;
}

.principles-title {
    font-size: 28px;
    margin-bottom: 22px;
}

.story-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 42px !important;
    margin: 64px 0 28px !important;
    text-transform: uppercase;
}

.story-title::before,
.story-title::after {
    content: "";
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 218, 73, 0.86));
}

.story-title::after {
    background: linear-gradient(90deg, rgba(245, 218, 73, 0.86), transparent);
}

.principles-subtitle {
    font-size: 22px;
    margin-bottom: 16px;
}

.philosophy-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff7bf;
    text-align: center;
    margin-bottom: 22px;
}

.principles-list {
    display: grid;
    gap: 13px;
    margin: 0 auto 22px;
    text-align: justify;
}

.principles-list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.58;
    padding: 0 0 0 28px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
    position: relative;
}

.principles-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 14px rgba(245, 218, 73, 0.55);
}

.principles-note {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-gold-soft);
    letter-spacing: 1px;
    text-align: center;
    margin-top: 18px;
}

.belief-quote {
    max-width: 850px;
    margin: 44px auto 58px;
    padding: 34px 48px;
    border: 1px solid rgba(245, 218, 73, 0.3);
    border-radius: 8px;
    background: rgba(245, 218, 73, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: #fff;
    text-align: center;
}

.belief-quote em {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    line-height: 1.45;
    color: var(--color-gold-soft);
    font-weight: 500;
    display: block;
    margin-top: 12px;
}

/* ============================================================
   CHEF'S SIGNATURE DISHES (SPECIALS)
   ============================================================ */

.specials-page {
    background: var(--color-bg);
    position: relative;
    padding: 80px 70px 50px;
    color: #fff;
    height: auto;
    min-height: 1000px;
    justify-content: center;
    --contact-pillar-width: 1009px;
    --contact-pillar-height: 990px;
    --contact-pillar-bottom: -2px;
    --contact-pillar-side: -619px;
    --contact-pillar-opacity: 0.3;
}

.specials-page .pillar {
    width: var(--contact-pillar-width);
    height: var(--contact-pillar-height);
    bottom: var(--contact-pillar-bottom);
    opacity: var(--contact-pillar-opacity);
}

.specials-page .pillar-left {
    left: var(--contact-pillar-side);
}

.specials-page .pillar-right {
    right: var(--contact-pillar-side);
}


.specials-content {
    max-width: 1300px;      /* konjam width kootuna cards big-a fit aagum */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr)); /* fixed width mattum illa, column full-a fill pannum */
    gap: 28px;
    justify-content: center;   /* row centered-a nikkum */
}

.special-card {
    background: linear-gradient(180deg, rgba(17, 18, 42, 0.88), rgba(8, 9, 24, 0.9));
    border: 1px solid rgba(245, 218, 73, 0.25);
    border-radius: 12px;
    padding: 24px;
    width: 100%;              /* fixed 290px reduce panni, column-ku match aagum */
    max-width: 320px;         /* munnadi vida konjam big */
    margin: 0 auto;           /* card thaniya iruntha centered */
    text-align: justify;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.specials-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 60px);
    color: var(--color-gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.specials-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 50px;
}


.special-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 218, 73, 0.6);
}

.special-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    background: rgba(245, 218, 73, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.special-img-wrap:has(.special-img-placeholder[style*="flex"]) {
    border: 1.5px dashed rgba(245, 218, 73, 0.35);
}

.special-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.special-card:hover .special-img-wrap img {
    transform: scale(1.05);
}

.special-img-placeholder {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.8;
}

.special-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gold-soft);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-align: center;
}

.special-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   MENU LISTING PAGES (indo-page: Tiffin/Rice/etc.)
   ============================================================ */

.indo-header {
    text-align: center;
    margin-bottom: 30px;
}

.indo-logo {
    width: 79px;
    margin-top: -13px;
    margin-bottom: 10px;
    filter: brightness(1.2);
}

.brand-name-indo h1 {
    font-family: var(--font-display);
    margin-top: -42px;
    color: var(--color-gold);
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 700;
}

.divider-section-indo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin-bottom: 24px;
}

.divider-section-indo .design {
    width: 28px;
    height: 33px;
    margin-bottom: -55px;
}

.divider-section-indo .design.left {
    margin-left: -5px;
    margin-top: -49px;
}

.divider-section-indo .design.right {
    margin-left: 1px;
    margin-top: -49px;
}

.divider-section-indo .sub-tag {
    font-family: var(--font-body);
    color: #fff;
    letter-spacing: 0px;
    margin-bottom: -46px;
    font-size: 6px;
    font-weight: 500;
}

.indo-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 34px);
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 22px;
    color:var(--color-gold-bright);
}

/* --- CONTENT LAYOUT (2 Columns) --- */
.indo-page1{
    padding: 60px 44px;
    box-sizing: border-box;
}
.indo-page2 {
    padding: 60px 44px;
    box-sizing: border-box;
}

.indo-content {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 2px auto 0;
    flex: 1;
    align-items: flex-start;
    box-sizing: border-box;
}

.indo-content::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #cba84e;
    opacity: 0.6;
    transform: translateX(-50%);
}

.indo-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 0 26px;
    box-sizing: border-box;
}

/* --- MENU TIME NOTE (was inline-styled on 5 <p> tags, moved here) --- */
.menu-time-note {
    color: #f5c344;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 2px 0 10px;
}

/* --- RIBBON TITLE STYLE (Yellow Banner) --- */
.ribbon-title {
    background-color: var(--color-gold);
    color: #0d0d0d;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    padding: 8px 40px;
    text-align: center;
    width: max-content;
    margin: 27px auto 17px 0;
    position: relative;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        92% 50%,
        100% 100%,
        0% 100%,
        8% 50%
    );
    min-width: 180px;
}

/* --- MENU ITEMS --- */
.menu-items-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(60px, 18%, 150px);
    box-sizing: border-box;
}

.menu-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--font-body);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
    min-width: 0;
    gap: 8px;
}

.menu-row span {
    font-weight: 500;
    line-height: 1.35;
}

.menu-row span + span {
    font-weight: 500;
    white-space: nowrap;
}

.dish-name {
    flex: 1;
    min-width: 0;
}

.dish-tag {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px !important;
    letter-spacing: 0;
    cursor: help;
    opacity: 0.9;
}

.right-col .menu-items-group.top-align {
    margin-top: 20px;
}


.health-iconss {
    display: flex;
    justify-content: center;
    margin-top: 200px;
    margin-left: 39px;
}

.health-iconss img {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: brightness(1.2);
    margin-bottom: 100px;
    margin-top: -300px;
}

/* Tablet */
@media (max-width: 768px) {
    .indo-page1{
    padding: 60px 44px;
    box-sizing: border-box;
}
.indo-page2 {
    padding: 60px 44px;
    box-sizing: border-box;
}

    .health-iconss {
        margin-left: 20px;
        margin-right: 20px;
    }

    .health-iconss img {
        margin-top: -60px;
        margin-bottom: 40px;
    }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
    background: var(--color-bg);
    position: relative;
    padding: 60px 50px 30px;
    color: #fff;
    height: auto;
    min-height: 1000px;
    justify-content: center;
    --contact-pillar-width: 1100px;
    --contact-pillar-height: 2380px;
    --contact-pillar-bottom: -2px;
    --contact-pillar-side: -609px;
    --contact-pillar-opacity: 0.3;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 0 16px;
    margin-bottom: 10px;
    margin-top: 70px;
    text-transform: uppercase;
}
.section-heading3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-gold);
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 0 16px;
    margin-bottom: 50px;
    margin-top: 70px;
    text-transform: uppercase;
}


.contact-page .pillar {
    width: var(--contact-pillar-width);
    height: var(--contact-pillar-height);
    bottom: var(--contact-pillar-bottom);
    opacity: var(--contact-pillar-opacity);
}
.contact-page .pillar-left { left: var(--contact-pillar-side); }
.contact-page .pillar-right { right: var(--contact-pillar-side); }

.services-container {
    text-align: center;
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1500px;
    margin: -20px auto 0;
    color: #fff;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 60px);
    line-height: 1;
    color: var(--color-gold);
    letter-spacing: 2px;

    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.event-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--color-text);

}

/* ---- Logos ---- */
.service-logos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.service-logo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.service-logo-btn:hover { transform: translateY(-6px); }

.service-img.bhakshanam-logo,
.service-img.vaibhogam-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.service-logo-number {
    color: var(--color-gold-soft);
    font-weight: 600;
    font-size: 18px;
}

/* ============================================================
   ADDRESS + MAP
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    text-align: left;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-label {
    color: var(--color-gold-soft);
    font-size: 16px;
    margin-bottom: 5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.address-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.map-directions-btn {
    align-self: flex-start;
    padding: 8px 22px;
    font-size: 16px;
    margin-top: 0;
}

.map-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-embed-wrap {
    width:300px;
    height: 300px;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}
/* ============================================================
   SOCIAL / QR SECTION
   ============================================================ */

.social-footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 0 20px;
}

.qr-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transform: translateX(110px);
}

.inqr-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.qr-group p{
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-top: 20px;
}
.inqr-group p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-left: 110px;
    white-space: nowrap;
    margin-top: 5px;
}
.swiggy-box p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-top: 20px;
}

/* Google QR */
.qr-code {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-right: 0;
}

.qr-group a {
    display: block;
    line-height: 0;
}
.qr-code:hover {
    transform: translateY(-4px);
}
/* Instagram QR container */
.instagram-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    margin-left: 110px;
}
.swig-zoma-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
}
.swig-zoma-logo:hover {
    transform: translateY(-4px);
}
.instagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-4px);
}

.instaqr-code {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.instagram-item span {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Swiggy / Zomato — same size as other QRs */
.swiggy-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.zomato-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        max-width: 320px;
    }
    .contact-info-card { align-items: center; }
    .service-logos { gap: 30px; }
    .service-img.bhakshanam-logo,
    .service-img.vaibhogam-logo {
        width: 300px;
        height: 300px;
    }
     .qr-code, .instaqr-code, .swiggy-logo { width: 140px; height: 140px; }
    .instagram-links { gap: 14px; }
}
/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-page {
    background: var(--color-bg);
    position: relative;
    padding: 80px 70px 50px;
    color: #fff;
    height: auto;
    min-height: 1000px;
    justify-content: center;
    --contact-pillar-width: 1009px;
    --contact-pillar-height: 500px;
    --contact-pillar-bottom: -2px;
    --contact-pillar-side: -619px;
    --contact-pillar-opacity: 0.3;
}

.gallery-page .pillar {
    width: var(--contact-pillar-width);
    height: var(--contact-pillar-height);
    bottom: var(--contact-pillar-bottom);
    opacity: var(--contact-pillar-opacity);
}

.gallery-page .pillar-left {
    left: var(--contact-pillar-side);
}

.gallery-page .pillar-right {
    right: var(--contact-pillar-side);
}



.gallery-header {
    text-align: center;
    margin-bottom: 34px;
    z-index: 10;
    position: relative;
    width: 100%;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 60px);
    line-height: 1;
    color: var(--color-gold);
    margin-top: 34px;
    letter-spacing: 2px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.gallery-section {
    text-align: center;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto 54px;
    position: relative;
    z-index: 10;
}

.gallery-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: var(--font-accent);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-gold-soft);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-section-title::before,
.gallery-section-title::after {
    content: "";
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 218, 73, 0.85));
}

.gallery-section-title::after {
    background: linear-gradient(90deg, rgba(245, 218, 73, 0.85), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    margin: 0 auto;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(18, 18, 38, 0.95), rgba(8, 9, 24, 0.96));
    border: 1px solid rgba(245, 218, 73, 0.34);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    padding: 12px;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: default;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 218, 73, 0.78);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(245, 218, 73, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 255px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.awards-grid .gallery-item img {
    height: 285px;
}

.gallery-caption {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(15, 15, 35, 0.92);
    color: #fff;
    border: 1px solid rgba(245, 218, 73, 0.6);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.gallery-page::before,
.gallery-page::after {
    content: "";
    position: absolute;
    top: -11px;
    width: 1128px;
    height: 1270px;
    background: url('images/pillar-png-01.webp') no-repeat center/contain;
    opacity: 0.25;
    filter: grayscale(1) brightness(1.2);
    pointer-events: none;
    z-index: 1;
}

.gallery-page::before {
    left: -643px;
}

.gallery-page::after {
    right: -643px;
    transform: scaleX(-1);
}
/* ================================================================
   TABLET / SMALL LAPTOP  — max-width 1100px, min-width 769px
   ================================================================ */
@media (max-width: 1100px) and (min-width: 769px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .indo-page1,
    .indo-page2 {
        padding: 0 22px;
    }

    .indo-content {
        max-width: 100%;
    }

    .indo-col {
        padding: 0 14px;
    }

    .menu-items-group {
        padding-left: clamp(40px, 14%, 100px);
    }

    .ribbon-title {
        font-size: 17px;
        padding: 7px 26px;
    }

    .menu-row,
    .menu-row span {
        font-size: 14px;
    }
    .indo-page1{
    padding: 60px 44px;
    box-sizing: border-box;
}
.indo-page2 {
    padding: 60px 44px;
    box-sizing: border-box;
}

}

/* ================================================================
   MOBILE RESPONSIVE  — max-width 768px
   ================================================================ */
@media (max-width: 768px) {

    /* ---------- Base page ---------- */
    .menu-page {
        height: auto !important;
        min-height: unset !important;
        contain: none !important;
        content-visibility: visible !important;
    }

    .bg-pattern {
        background-size: 400px;
        opacity: 0.15;
    }

    .top-border,
    .bottom-border {
        opacity: 1.8;
    }

    .pillar {
        width: 160px !important;
        height: 260px !important;
        opacity: 0.12 !important;
    }
    
    
    .hanging-lights {
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.hanging-lights-img {
    width: 100%;
    height: auto;
    margin-top: 101px;
    opacity: 0.7;
}
    /* ---------- Home / menu hero ---------- */
    .center-content {
        width: 94% !important;
    }

    .home-page .main-logo-img {
        height: 140px !important;
        width: 140px !important;
    }

    .sub-tag {
        font-size: 11px !important;
        letter-spacing: 1px !important;
        margin-top: -10px !important;
    }

    .divider-section {
        margin: 8px 0 !important;
        gap: 6px !important;
    }

    
    .design,
    .design.left,
    .design.right {
        width: 44px !important;
        height: auto !important;
        margin-top: -10px !important;
    }

    .menu-title h2 {
        font-size: 3rem !important;
        margin-top: 10px !important;
        margin-bottom: -5px !important;
        margin-left: 0 !important;
        letter-spacing: 0 !important;
    }

    .menu-title h3 {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .motto {
        font-size: 15px !important;
        margin-top: 10px !important;
        margin-left: 0 !important;
    }

    .health-icons {
        margin-left: 0 !important;
        justify-content: center !important;
        margin-top: 4px !important;
    }

    .health-icons img {
        width: 88vw !important;
        max-width: 500px !important;
        align-self: center;
    }
    .health-iconss {
        margin-left: 0 !important;
        justify-content: center !important;
        margin-top: 4px !important;
        
    }

    .health-iconss img {
        width: 88vw !important;
        max-width: 500px !important;

        align-self: center;
    }

    .hero-content {
        padding: 10px 8px !important;
        margin: 10px 0 !important;
    }

    .welcome-text {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .hero-tagline {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }

    .hero-hours {
        font-size: 13px !important;
        margin-bottom: 18px !important;
    }

    .pure-veg-badge {
        padding: 5px 12px !important;
        margin-bottom: 12px !important;
    }

    .pure-veg-text {
        font-size: 11px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .cta-button {
        width: 40% !important;
        text-align: center !important;
        font-size: 16px !important;
        padding: 10px 10px !important;
    }

    /* ---------- About page ---------- */
    .about-page {
        padding: 24px 16px 50px;
        min-height: unset;
        --about-pillar-width: 1059px;
        --about-pillar-height: 1800px;
        --about-pillar-bottom: -2px;
        --about-pillar-side: -629px;
        --about-pillar-opacity: 0.3;
            
    }

    .about-title,
    .contact-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .about-content {
        max-width: 100%;
        width: 100%;
        margin: 12px auto 0;
        padding: 0;
        box-sizing: border-box;
    }

    .about-title {
        line-height: 1.1;
        white-space: normal;
    }

    .about-text-block {
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto 12px;
        text-align: center;
        padding: 0;
        word-break: break-word;
    }

    .about-principles {
        width: 100%;
        max-width: 100%;
        padding: 18px 14px;
        margin: 16px auto;
        box-sizing: border-box;
    }

    .about-principles::before {
        left: 14px;
        right: 14px;
    }

    .principles-title   { font-size: 18px; margin-bottom: 14px; }
    .principles-subtitle{ font-size: 16px; margin-bottom: 10px; }
    .philosophy-text    { font-size: 14px; margin-bottom: 14px; }
    .principles-list li { font-size: 13px; padding-left: 20px; }
    .principles-note    { font-size: 13px; }

    .story-title {
        font-size: 20px !important;
        gap: 8px !important;
        margin: 28px 0 14px !important;
        white-space: normal;
    }

    .story-title::before,
    .story-title::after {
        width: 28px !important;
        flex-shrink: 0;
    }

    .belief-quote {
        max-width: 100%;
        padding: 18px 14px;
        margin: 20px auto 32px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .belief-quote em { font-size: 15px; }

    /* ---------- Specials page ---------- */
    .specials-page {
        padding: 26px 16px 40px;
        min-height: unset;
    }

    .specials-title {
        font-size: 32px;
    }

    .specials-subtitle {
        font-size: 13px;
        margin-bottom: 26px;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .special-card {
        padding: 16px;
    }

    .special-name {
        font-size: 17px;
    }

    .special-desc {
        font-size: 13px;
    }

    /* ---------- Indo-Chinese / menu-listing pages ---------- */
    .indo-page1,
    .indo-page2 {
        padding: 24px 14px 36px !important;
        height: auto !important;
    }

    .indo-header {
        margin-bottom: 12px !important;
    }

    .indo-logo {
        width: 46px !important;
        margin-top: -4px !important;
        margin-bottom: 4px !important;
    }

    .brand-name-indo h1 {
        font-size: 14px !important;
        margin-top: -28px !important;
    }

    .divider-section-indo {
        gap: 1px !important;
        margin-bottom: 8px !important;
    }

    .divider-section-indo .design {
        width: 20px !important;
        height: 24px !important;
        margin-bottom: -30px !important;
    }

    .divider-section-indo .sub-tag {
        font-size: 5px !important;
        margin-bottom: -28px !important;
    }

    .indo-header h2 {
        font-size: 20px !important;
        margin-top: 14px !important;
        letter-spacing: 1px !important;
    }

    .indo-content {
        flex-direction: column !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .indo-content::after { display: none !important; }

    .indo-col {
        padding: 0 6px !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    .right-col .menu-items-group.top-align {
        margin-top: 0 !important;
    }

    .ribbon-title {
        font-size: 15px !important;
        padding: 6px 24px !important;
        margin: 12px auto 10px 0 !important;
    }

    .menu-items-group {
        padding-left: 0 !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .menu-row {
        font-size: 14px !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .menu-row span { font-size: 14px !important; }

    .dish-name {
        text-align: left !important;
        flex: 1 !important;
    }

    .dish-tag {
        text-align: right !important;
        white-space: nowrap !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        font-size: 11px !important;
        opacity: 0.85;
    }




    /* ---------- Contact page ---------- */
    .contact-page {
        padding: 30px 16px 40px;
        min-height: unset;
        --contact-pillar-width: 150px;
        --contact-pillar-height: 240px;
        --contact-pillar-bottom: -8px;
        --contact-pillar-side: -52px;
        --contact-pillar-opacity: 0.12;
    }

    .services-container {
        margin-top: 10px !important;
        padding: 0 8px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .service-logos {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        margin-bottom: 30px !important;
    }

    .service-logo-btn {
        width: 100% !important;
        max-width: 400px !important;
    }

    .event-text {
        font-size: 16px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 1px !important;
        padding: 0 6px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 28px !important;
        text-align: center;
        max-width: 320px;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .info-label {
        font-size: 13px !important;
    }

    .address-text {
        font-size: 16px !important;
    }

    .map-directions-btn {
        width: 50% !important;
        font-size: 14px !important;
        padding: 10px 20px !important;
        align-self: center;
    }

    .contact-info-card {
        align-items: center;
    }

    .service-img.bhakshanam-logo,
    .service-img.vaibhogam-logo {
        width: 400px;
        height: 400px;
    }


    /* =========================
       SOCIAL / QR SECTION
       ========================= */

    .social-footer {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        margin: 0 auto 20px;
    }


    /* Google QR */

    .qr-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        /* Remove desktop positioning */
        transform: none;
        margin: 0;
    }


    /* Instagram QR */

    .inqr-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        /* Remove desktop positioning */
        margin: 0;
    }


    .instagram-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;

        /* Remove desktop margin */
        margin-left: 0;
        width: 100%;
    }


    .instagram-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }


    /* =========================
       QR SIZE
       ========================= */

    .qr-code,
    .instaqr-code,
    .swiggy-logo.zomato-logo {
        width: 120px;
        height: 120px;
        object-fit: contain;
    }


    /* =========================
       TEXT
       ========================= */

    .qr-group p,
    .inqr-group p,
    .swiggy-box p {
        font-size: 13px;
        letter-spacing: 1.5px;
        white-space: normal;
        text-align: center;
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }


    .instagram-item span {
        font-size: 12px;
        white-space: nowrap;
    }


    /* =========================
       SWIGGY / ZOMATO
       ========================= */

    .swig-zoma-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        width: 100%;
    }


    /* ---------- Gallery page ---------- */
    .gallery-page {
        padding: 24px 14px 44px !important;
        min-height: unset !important;
    }

    .gallery-header { margin-bottom: 20px !important; }

    .gallery-title {
        font-size: 32px !important;
        margin-top: 16px !important;
    }

    .gallery-section {
        max-width: 100% !important;
        margin: 0 auto 32px !important;
    }

    .gallery-section-title {
        font-size: 18px !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .gallery-section-title::before,
    .gallery-section-title::after {
        width: 30px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .gallery-item {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    .gallery-item img,
    .awards-grid .gallery-item img {
        height: 220px !important;
    }

    .gallery-page::before,
    .gallery-page::after {
        width: 120px !important;
        height: 320px !important;
        top: -8px !important;
        opacity: 0.10 !important;
    }

    .gallery-page::before { left: -60px !important; }
    .gallery-page::after  { right: -60px !important; }
}

/* ============================================================
   FINAL RESPONSIVE OVERRIDES
   SHREE BHOJAN
   Mobile + Small Mobile + Tablet
   ============================================================ */


/* ============================================================
   TABLET
   769px - 1100px
   ============================================================ */

@media (min-width: 769px) and (max-width: 1100px) {

    /* ---------- Global ---------- */

    html {
        font-size: 16px;
    }

    .menu-page {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 100vh;
    }

    /* ---------- Home ---------- */

    .center-content {
        width: 90%;
    }

    .main-logo-img {
        width: min(260px, 30vw);
        height: min(260px, 30vw);
    }

    .brand-name h1 {
        font-size: clamp(3rem, 7vw, 5rem);
    }

    .sub-tag {
        font-size: 13px;
    }

    .health-icons img,
    .health-iconss img {
        width: 90%;
        max-width: 700px;
        height: auto;
    }

    /* ---------- About ---------- */

    .about-page,
    .specials-page,
    .gallery-page {
        padding: 60px 35px 45px;
    }

    .about-content {
        width: 100%;
        max-width: 900px;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.75;
    }

    .about-principles {
        max-width: 700px;
    }

    /* ---------- Specials ---------- */

    .specials-content {
        width: 100%;
        max-width: 900px;
    }

    .specials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .special-card {
        max-width: none;
        width: 100%;
    }

    /* ---------- Menu pages ---------- */

    .indo-page1,
    .indo-page2 {
        padding: 45px 30px !important;
    }

    .indo-content {
        max-width: 100%;
    }

    .indo-col {
        padding: 0 16px;
    }

    .menu-items-group {
        padding-left: 20px;
    }

    .menu-row {
        font-size: 14px;
    }

    .ribbon-title {
        font-size: 17px;
        padding: 7px 24px;
    }

    /* ---------- Contact ---------- */

    .contact-page {
        padding: 50px 30px 40px;
    }

    .services-container {
        max-width: 900px;
    }

    .service-logos {
        gap: 35px;
    }

    .service-img.bhakshanam-logo,
    .service-img.vaibhogam-logo {
        width: min(300px, 35vw);
        height: min(300px, 35vw);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 850px;
    }

    .map-embed-wrap {
        width: 260px;
        height: 260px;
    }

    .social-footer {
        gap: 30px;
        max-width: 900px;
    }

    .qr-group {
        transform: none;
    }

    .inqr-group p,
    .instagram-links {
        margin-left: 0;
    }

    /* ---------- Gallery ---------- */

    .gallery-page {
        width: 100%;
    }

    .gallery-section {
        max-width: 900px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-item img {
        height: 240px;
    }
}


/* ============================================================
   MOBILE
   481px - 768px
   ============================================================ */

@media (min-width: 481px) and (max-width: 768px) {

    html {
        font-size: 16px;
    }

    body {
        overflow-x: hidden;
    }

    .menu-page {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        min-height: 100vh !important;
    }

    /* ---------- Home ---------- */

    .center-content {
        width: 92% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .main-logo-img {
        width: 150px !important;
        height: 150px !important;
    }

    .brand-name h1 {
        font-size: clamp(2.7rem, 10vw, 4.2rem);
    }

    .sub-tag {
        font-size: 11px !important;
    }

    .hero-content {
        width: 100%;
        padding: 15px !important;
    }

    .hero-buttons {
        flex-direction: row !important;
        justify-content: center;
    }

    .cta-button {
        width: auto !important;
        min-width: 150px;
    }

    /* ---------- About ---------- */

    .about-page {
        padding: 35px 25px 50px;
    }

    .about-title,
    .contact-title,
    .specials-title,
    .gallery-title {
        font-size: 34px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-principles {
        max-width: 650px;
        padding: 24px 22px;
    }

    /* ---------- Specials ---------- */

    .specials-page {
        padding: 35px 25px 50px;
    }

    .specials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .special-card {
        max-width: none;
        padding: 15px;
    }

    .special-img-wrap {
        aspect-ratio: 4 / 3;
    }

    /* ---------- Menu ---------- */

    .indo-page1,
    .indo-page2 {
        padding: 30px 22px 40px !important;
    }

    .indo-content {
        flex-direction: column !important;
    }

    .indo-content::after {
        display: none !important;
    }

    .indo-col {
        width: 100% !important;
        padding: 0 !important;
    }

    .menu-items-group {
        padding-left: 0 !important;
    }

    .menu-row {
        font-size: 14px !important;
    }

    /* ---------- Contact ---------- */

    .contact-page {
        padding: 35px 25px 45px;
    }

    .service-logos {
        gap: 20px;
    }

    .service-img.bhakshanam-logo,
    .service-img.vaibhogam-logo {
        width: 400px !important;
        height: 400px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
    }

    .map-embed-wrap {
        width: min(100%, 320px);
        height: min(100vw, 320px);
    }

    .social-footer {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .qr-group,
    .inqr-group {
        transform: none;
        margin: 0;
    }

    .instagram-links {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .swig-zoma-logo {
        flex-wrap: wrap;
    }

    /* ---------- Gallery ---------- */

    .gallery-page {
        padding: 35px 22px 45px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .gallery-item {
        max-width: none !important;
    }

    .gallery-item img,
    .awards-grid .gallery-item img {
        height: 210px !important;
    }
}


/* ============================================================
   SMALL MOBILE
   320px - 480px
   ============================================================ */

@media (max-width: 480px) {

    /* ---------- Global ---------- */

    html {
        font-size: 15px;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .menu-page {
        width: 100%;
        max-width: 100%;
        min-height: 100vh !important;
        height: auto !important;
        overflow: hidden;
    }

    /* ---------- Decorative elements ---------- */

    .top-border,
    .bottom-border {
        width: 100%;
        opacity: 0.8;
    }

    .pillar {
        width: 120px !important;
        height: 220px !important;
        opacity: 0.08 !important;
    }

    .bg-pattern {
        background-size: 300px;
        opacity: 0.08;
    }

    /* ---------- Home ---------- */

    .center-content {
        width: 94% !important;
    }

    .home-page .main-logo-img {
        width: 120px !important;
        height: 120px !important;
    }

    .home-page .brand-name {
        margin-top: -25px !important;
    }

    .brand-name h1 {
        font-size: clamp(2.1rem, 12vw, 3.2rem) !important;
        line-height: 1;
        word-break: break-word;
    }

    .sub-tag {
        font-size: 9px !important;
        letter-spacing: 0.8px !important;
    }

    .divider-section {
        gap: 4px !important;
    }

    .design,
    .design.left,
    .design.right {
        width: 32px !important;
    }

    .welcome-text {
        font-size: 18px !important;
    }

    .hero-tagline {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .hero-hours {
        font-size: 11px !important;
    }

    .pure-veg-badge {
        padding: 4px 9px !important;
    }

    .pure-veg-text {
        font-size: 10px !important;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .cta-button {
        width: 75% !important;
        min-width: 0 !important;
        max-width: 260px;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    .health-icons,
    .health-iconss {
        width: 100%;
        margin-left: 0 !important;
    }

    .health-icons img,
    .health-iconss img {
        width: 94vw !important;
        max-width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ---------- About ---------- */

    .about-page {
        padding: 28px 14px 40px !important;
    }

    .about-content {
        width: 100%;
    }

    .about-title {
        font-size: 27px !important;
        line-height: 1.15;
        letter-spacing: 0.5px;
    }

    .about-description {
        font-size: 13px !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }

    .about-principles {
        width: 100%;
        padding: 16px 12px !important;
        margin: 18px auto !important;
    }

    .principles-title {
        font-size: 17px !important;
    }

    .principles-subtitle {
        font-size: 14px !important;
    }

    .philosophy-text {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .principles-list {
        gap: 9px;
    }

    .principles-list li {
        font-size: 12px !important;
        line-height: 1.55;
        padding-left: 18px !important;
        text-align: left;
    }

    .principles-list li::before {
        width: 6px;
        height: 6px;
        left: 1px;
        top: 8px;
    }

    .principles-note {
        font-size: 11px !important;
        line-height: 1.5;
    }

    .story-title {
        font-size: 18px !important;
        gap: 6px !important;
    }

    .story-title::before,
    .story-title::after {
        width: 20px !important;
    }

    .belief-quote {
        padding: 15px 12px !important;
        margin: 18px auto 28px !important;
        font-size: 12px !important;
        line-height: 1.65;
    }

    .belief-quote em {
        font-size: 14px !important;
    }

    /* ---------- Specials ---------- */

    .specials-page {
        padding: 28px 14px 40px !important;
    }

    .specials-title {
        font-size: 28px !important;
    }

    .specials-subtitle {
        font-size: 12px !important;
        margin-bottom: 22px !important;
    }

    .specials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .special-card {
        width: 100%;
        max-width: 100%;
        padding: 13px !important;
    }

    .special-name {
        font-size: 16px !important;
    }

    .special-desc {
        font-size: 12px !important;
        line-height: 1.55;
    }

    /* ---------- Menu pages ---------- */

    .indo-page1,
    .indo-page2 {
        padding: 24px 12px 35px !important;
    }

    .indo-logo {
        width: 42px !important;
    }

    .brand-name-indo h1 {
        font-size: 13px !important;
    }

    .indo-header h2 {
        font-size: 18px !important;
        letter-spacing: 0.5px !important;
    }

    .indo-content {
        width: 100% !important;
        flex-direction: column !important;
    }

    .indo-col {
        width: 100% !important;
        padding: 0 !important;
    }

    .ribbon-title {
        max-width: 100%;
        min-width: 140px;
        font-size: 13px !important;
        padding: 6px 18px !important;
    }

    .menu-items-group {
        width: 100% !important;
        padding-left: 0 !important;
        gap: 8px !important;
    }

    .menu-row {
        width: 100% !important;
        font-size: 12px !important;
        line-height: 1.35;
        gap: 6px !important;
    }

    .menu-row span {
        font-size: 12px !important;
    }

    .dish-name {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .dish-tag {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    /* ---------- Contact ---------- */

    .contact-page {
        padding: 28px 14px 40px !important;
    }

    .contact-title {
        font-size: 28px !important;
    }

    .event-text {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .service-logos {
        flex-direction: column !important;
        gap: 14px !important;
    }

    .service-logo-btn {
        width: 100% !important;
        max-width: 300px !important;
    }

    .service-img.bhakshanam-logo,
    .service-img.vaibhogam-logo {
        width: 300px !important;
        height: 300px !important;
    }

    .section-heading,
    .section-heading3 {
        font-size: 20px !important;
        margin-top: 35px !important;
    }

    .contact-grid {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .info-label {
        font-size: 11px !important;
        letter-spacing: 1.5px;
    }

    .address-text {
        font-size: 13px !important;
        line-height: 1.6;
    }

    .map-directions-btn {
        width: auto !important;
        max-width: 200px;
        font-size: 12px !important;
        padding: 9px 18px !important;
    }

    .map-embed-wrap {
        width: min(90vw, 280px) !important;
        height: min(90vw, 280px) !important;
        max-width: 280px !important;
    }

    /* ---------- QR / Social ---------- */

    .social-footer {
        width: 100%;
        flex-direction: column !important;
        align-items: center !important;
        gap: 28px !important;
    }

    .qr-group,
    .inqr-group {
        width: 100%;
        transform: none !important;
        margin: 0 !important;
    }

    .instagram-links {
        width: 100%;
        margin: 0 !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .swig-zoma-logo {
        width: 100%;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .qr-code,
    .instaqr-code,
    .swiggy-logo,
    .zomato-logo {
        width: 100px !important;
        height: 100px !important;
    }

    .qr-group p,
    .inqr-group p,
    .swiggy-box p {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        white-space: normal !important;
        margin: 8px 0 !important;
    }

    .instagram-item span {
        font-size: 10px !important;
    }

    /* ---------- Gallery ---------- */

    .gallery-page {
        padding: 28px 12px 40px !important;
    }

    .gallery-header {
        margin-bottom: 18px !important;
    }

    .gallery-title {
        font-size: 28px !important;
        margin-top: 10px !important;
    }

    .gallery-section {
        width: 100% !important;
        margin-bottom: 28px !important;
    }

    .gallery-section-title {
        font-size: 16px !important;
        gap: 6px !important;
        line-height: 1.3;
    }

    .gallery-section-title::before,
    .gallery-section-title::after {
        width: 20px !important;
        flex-shrink: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 8px !important;
    }

    .gallery-item img,
    .awards-grid .gallery-item img {
        width: 100% !important;
        height: auto !important;
        min-height: 190px;
        max-height: 240px;
        object-fit: contain !important;
    }

    .gallery-caption {
        font-size: 11px !important;
        padding: 8px 7px !important;
        line-height: 1.4;
    }

    .gallery-page::before,
    .gallery-page::after {
        width: 80px !important;
        height: 220px !important;
        opacity: 0.06 !important;
    }

    .gallery-page::before {
        left: -45px !important;
    }

    .gallery-page::after {
        right: -45px !important;
    }
}


/* ============================================================
   VERY SMALL MOBILE
   320px - 360px
   ============================================================ */

@media (max-width: 360px) {

    .home-page .main-logo-img {
        width: 105px !important;
        height: 105px !important;
    }

    .brand-name h1 {
        font-size: 2rem !important;
    }

    .sub-tag {
        font-size: 8px !important;
    }

    .cta-button {
        width: 85% !important;
        font-size: 12px !important;
    }

    .about-title,
    .contact-title,
    .specials-title,
    .gallery-title {
        font-size: 25px !important;
    }

    .about-description {
        font-size: 12px !important;
    }

    .menu-row,
    .menu-row span {
        font-size: 11px !important;
    }

    .gallery-section-title {
        font-size: 14px !important;
    }

    .gallery-section-title::before,
    .gallery-section-title::after {
        width: 15px !important;
    }

    .qr-code,
    .instaqr-code,
    .swiggy-logo,
    .zomato-logo {
        width: 90px !important;
        height: 90px !important;
    }
}
.footer-bottom {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    margin: 0;
}

.footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
    width: auto !important;
    font-size: 16px;
    color: var(--color-text);
}

.footer-bottom p:first-child {
    text-align: left;
}

.footer-bottom p:last-child {
    text-align: right;
    white-space: normal;
}

.footer-bottom a {
    display: inline;
    color:#ffe341;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 15px;
        text-align: center;
    }

    .footer-bottom p {
        width: 100% !important;
        font-size: 14px;
        text-align: center !important;
    }
}