/* =========================================================================
   MAJESTIC MOMOS - Theme & Core Styles
   ========================================================================= */

:root {
    /* Brand Colors */
    --color-pink: #F4A261;
    /* Accent Color (Gold/Warm) */
    --color-pink-light: #E76F51;
    /* Darker Accent */
    --color-cream: #121212;
    /* Dark Background */
    --color-chutney: #E63946;
    /* Iconic Momo Red */
    --color-steam: rgba(255, 255, 255, 0.75);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-storybook: 'Rozha One', serif;
    --font-hindi: 'Yatra One', cursive;

    /* Text Colors */
    --text-main: #F8F9FA;
    --text-muted: #ADB5BD;

    /* Glass Effect Variables */
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);

    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--color-cream);
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Gradient & Orbs */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-cream) 0%, #0a0a0a 100%);
    z-index: -10;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -5;
    animation: floatOrb 20s infinite alternate;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: rgba(230, 57, 70, 0.15);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: rgba(244, 162, 97, 0.1);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15%, 15%) scale(1.1);
    }
}

/* Containers & Sections */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.text-center {
    text-align: center;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--color-chutney);
    margin: 20px 0;
    border-radius: 2px;
}

.divider.center {
    margin: 20px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--trans-fast);
    border: none;
}

.btn-primary {
    background: var(--color-chutney);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: #d62f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--color-pink);
    color: #121212;
}

.btn-secondary:hover {
    background: var(--color-pink-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--color-pink);
    color: #121212;
}

/* Glass Card Global Modifier */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--trans-fast);
}


/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--trans-fast);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-award-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    align-items: flex-start;
}

.zomato-brand {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    font-style: italic;
    color: #cb202d;
    letter-spacing: -0.5px;
    line-height: 1;
}

.award-word {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--trans-fast);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: 110%;
    background: #1e1e1e;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--trans-fast);
    overflow: hidden;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--trans-fast);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.platform-logo {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    /* Ensures visibility if the logo has transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    opacity: 0;
    /* JS handles reveal */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-left,
.hero-right {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-left.animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.hero-right.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.momo-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.momo-image {
    width: 100%;
    transform: translateZ(50px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.momo-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-main-logo {
    max-width: 520px;
    width: 100%;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================================================================
   SECTION A: ABOUT (Storybook)
   ========================================================================= */
.storybook-card {
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Background pattern for storybook */
.storybook-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.02'%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/g%3E%3C/svg%3E");
    z-index: 0;
}

.storybook-content {
    position: relative;
    z-index: 1;
}

.story-header {
    margin-bottom: 40px;
    text-align: center;
}

.story-header .divider {
    margin: 10px auto;
}

.story-body {
    column-count: 2;
    column-gap: 60px;
    text-align: justify;
    font-family: var(--font-storybook);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.story-body p {
    margin-bottom: 20px;
}



.story-footer {
    margin-top: 40px;
    text-align: center;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.msg-free-badge {
    display: inline-block;
    background: var(--color-pink);
    color: #121212;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

/* =========================================================================
   SECTION B: MENU 
   ========================================================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 28px;
    align-items: start;
}

/* Full-width section tagline dividers */
.hindi-tagline-full {
    grid-column: 1 / -1;
    font-family: var(--font-hindi);
    font-size: 1.3rem;
    color: var(--color-chutney);
    text-align: center;
    padding: 20px 30px;
    background: rgba(230, 57, 70, 0.07);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 16px;
    letter-spacing: 0.5px;
    margin: 10px 0;
}

.menu-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(244, 162, 97, 0.15);
    box-shadow: 0 0 0 1px rgba(244, 162, 97, 0.05), 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.menu-card:hover {
    transform: scale(1.02);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 0 0 1px rgba(244, 162, 97, 0.35), 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(244, 162, 97, 0.12);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    background: var(--color-chutney);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    flex-grow: 1;
}

.menu-items li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.menu-items li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.item-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    flex: 0 0 auto;
    min-width: 80px;
}

.item-price {
    font-size: 0.88rem;
    color: var(--color-pink);
    font-weight: 600;
    text-align: right;
    flex: 1 1 auto;
    line-height: 1.5;
}

.menu-gst-note {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-pink);
    border-top: 1px solid rgba(244, 162, 97, 0.2);
}

/* ---- Menu Price Table ---- */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.88rem;
}

.menu-table thead tr {
    background: var(--color-chutney);
}

.menu-table thead th {
    padding: 8px 4px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.menu-table thead th.col-type {
    text-align: left;
    width: 30%;
    background: transparent;
    /* remove (0,0) red background */
}

.menu-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.menu-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.menu-table tbody tr:hover {
    background: rgba(244, 162, 97, 0.08);
}

.menu-table tbody td {
    padding: 8px 4px;
    text-align: center;
    color: var(--color-pink);
    font-weight: 700;
    font-size: 0.82rem;
}

.menu-table tbody td.row-label {
    text-align: left;
    color: var(--text-main);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}


/* =========================================================================
   REVIEWS & FEEDBACK
   ========================================================================= */
.reviews {
    background: transparent;
    padding-bottom: 80px;
    overflow-x: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    white-space: nowrap;
}

/* Gradient masks for smooth fade in/out on edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background), transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 30px;
    padding-left: 30px;
    /* Adjust width based on total cloned items naturally with inline-flex */
    animation: scroll-left 120s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translating exactly -50% shifts halfway across total track width (the duplicated half) */
        transform: translateX(-50%);
    }
}

.review-card {
    display: inline-block;
    width: 350px;
    white-space: normal;
    /* Override the nowrap from container to allow text wrapping */
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 162, 97, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-pink);
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.google-brand {
    position: absolute;
    bottom: 25px;
    right: 30px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.google-brand img {
    width: 18px;
    height: 18px;
}

/* =========================================================================
   SECTION: ACHIEVEMENT
   ========================================================================= */
.achievement-card {
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

/* Background pattern matching storybook */
.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.02'%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/g%3E%3C/svg%3E");
    z-index: 0;
}

.achievement-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.achievement-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(244, 162, 97, 0.3);
}

.achievement-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.achievement-text {
    flex: 1.2;
}

.achievement-text p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* =========================================================================
   SECTION C: OFFERS
   ========================================================================= */
.offers {
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10h10v10H10V10zM80 80h10v10H80V80z' fill='%23FFFFFF' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.offer-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.highlight-offer {
    border: 2px solid var(--color-pink);
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.8), rgba(244, 162, 97, 0.05));
}

.offer-icon {
    font-size: 2.5rem;
    color: var(--color-chutney);
    margin-bottom: 10px;
}

.offer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.offer-discount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-pink);
}

.offer-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.offer-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--color-pink);
    font-weight: 600;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--trans-fast);
}

.social-icon:hover {
    background: var(--color-pink);
    color: #121212;
    transform: translateY(-3px);
}

/* Follow Us - Row Layout */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 5px;
}

.social-link-row {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--trans-fast);
}

.social-link-row:hover .social-handle {
    color: var(--color-pink);
}

.social-link-row:hover .social-icon {
    background: var(--color-pink);
    color: #121212;
    transform: translateY(-2px);
}

.social-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--trans-fast);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-pink);
}

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

.contact-col i {
    color: var(--color-pink);
    margin-top: 4px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover {
    color: var(--color-pink);
}

.map-btn {
    margin-top: 15px;
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.map-btn:hover {
    background: white;
    color: var(--color-cream);
}

.map-container {
    height: 100%;
    min-height: 200px;
    border-radius: 16px;
    overflow: hidden;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .divider {
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 1px;
    margin: 30px 0;
}

.gst-notice {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-pink-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}


/* =========================================================================
   RESPONSIVE DESIGN 
   ========================================================================= */

@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 2.8rem;
    }

    .storybook-card, .achievement-card {
        padding: 40px;
    }

    .achievement-content {
        flex-direction: column;
        gap: 40px;
    }

    .story-body {
        column-count: 1;
    }

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

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

    .marquee-track {
        animation-duration: 200s;
        /* Slower on tablets */
    }

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

    .map-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-brand {
        gap: 10px;
    }

    .nav-award-text {
        padding-left: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .zomato-brand {
        font-size: 0.9rem;
    }

    .award-word {
        font-size: 0.45rem;
        letter-spacing: 1px;
    }

    .nav-logo {
        height: 45px;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .momo-3d-wrapper {
        max-width: 80%;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

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

    .marquee-track {
        animation-duration: 300s;
        /* Much slower on mobile for scrolling text */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-col {
        grid-column: span 1;
    }

    .map-container {
        min-height: 300px;
    }
}
