/* ==========================================
   Bite Pizza Co. — Premium Dark Theme (Solid Cards, Glassy Buttons)
   Colors: Deep Black, Maroon, Saffron Accents
   Fonts: Cormorant Garamond, Inter
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Core Palette */
    --black: #050000;
    --surface: #121212;
    --card: #1c1c1c;
    --maroon-dark: #2a0404;
    --maroon: #7a1515;
    --saffron: #d69c3a;
    --cream: #f4f0ea;
    --muted: rgba(244, 240, 234, 0.6);
    
    /* Glass Constants (For Buttons Only) */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(24px);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Variables */
    --radius-lg: 24px;
    --radius: 16px;
    --max-w: 1200px;
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* ===== RESET & GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--black);
    color: var(--cream);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }
.reveal.reveal--scale { transform: scale(0.94) translateY(20px); }
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
/* Stagger children inside a reveal-group */
.reveal-group > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-group.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.reveal-group.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.reveal-group.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }
.reveal-group.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.4s; }
.reveal-group.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.5s; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--cream);
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.section-padding { padding: 6rem 0; }
.bg-surface { background-color: var(--surface); } 
.bg-black { background-color: var(--black); }
.bg-maroon { background: var(--maroon); }
.eyebrow { display: block; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.8rem; font-weight: 600; }

/* ===== BUTTONS (GLASSY) ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 1rem 2.2rem; border-radius: 30px; border: 1px solid transparent; cursor: pointer; transition: var(--transition); text-align: center; }
.btn-red { background: linear-gradient(135deg, rgba(148,26,26,0.9), rgba(122,21,21,0.9)); color: var(--cream); box-shadow: 0 8px 24px rgba(122, 21, 21, 0.5); border: 1px solid rgba(255,255,255,0.2); }
.btn-red:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(122, 21, 21, 0.7); }
.btn-gold { background: linear-gradient(135deg, #e8ab41, #d69c3a); color: #000; box-shadow: 0 8px 24px rgba(214, 156, 58, 0.4); }
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(214, 156, 58, 0.6); }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #050000; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.5); padding: 0.5rem 0; transition: var(--transition); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 75px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: #f4f0ea; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--maroon); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: #f4f0ea; transition: 0.3s; border-radius: 2px;}

/* ===== HERO ===== */
.hero { height: 95vh; min-height: 700px; display: flex; align-items: flex-end; position: relative; padding-bottom: 6rem; border-bottom: 1px solid var(--glass-border); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/Hero.jpeg') center/cover no-repeat; z-index: 1; }
/* Bottom-heavy gradient to let the top of the image pop while text stays readable */
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 35%, transparent 80%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; width: 100%; text-align: left; }
.hero h1 { font-size: 5.5rem; margin-bottom: 1rem; line-height: 1.05; text-shadow: 0 4px 30px rgba(0,0,0,0.9); }
.hero p { font-size: 1.4rem; color: var(--cream); margin-bottom: 2.5rem; max-width: 650px; text-shadow: 0 2px 15px rgba(0,0,0,0.8); font-weight: 500; }
.hero-btns { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.trust-badges { display: flex; gap: 2rem; align-items: center; margin-top: 1.5rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 500; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-family: var(--font-sans); }
.badge svg { color: var(--saffron); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 4rem; text-align: center; }
.section-header h2 { font-size: 3.5rem; }

/* ===== MENU PREVIEW (HOME) ===== */
.menu-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.mp-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 350px; display: flex; align-items: flex-end; box-shadow: var(--shadow); border: 1px solid var(--glass-border); background: var(--card); }
.mp-card img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: 1; transition: 0.8s ease; }
.mp-card:hover img { transform: scale(1.05); }
.mp-card-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, rgba(122,21,21,0.9), rgba(0,0,0,0.1)); z-index: 2; }
.mp-card-content { position: relative; z-index: 3; padding: 2rem; width: 100%; background: linear-gradient(to top, rgba(5,0,0,0.8), transparent); }
.mp-card h3 { font-size: 2.2rem; margin-bottom: 0.5rem; color: var(--cream); text-shadow: 0 2px 10px rgba(0,0,0,0.5);}

/* ===== CURRENT OFFERS ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}
.offer-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(214, 156, 58, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 156, 58, 0.4);
}
.offer-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.offer-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.offer-card:hover .offer-card-hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Old grid classes kept for backwards compat */
.insta-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}

.insta-card--video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0d0a0a;
    border: 1px solid rgba(214, 156, 58, 0.2);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    /* Staggered reveal — start hidden */
    opacity: 1;
    transform: translateY(0);
}
.insta-card--video.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
                transform 0.6s cubic-bezier(0.22,1,0.36,1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}
.insta-card--video:hover {
    border-color: rgba(214, 156, 58, 0.7);
    box-shadow: 0 10px 40px rgba(0,0,0,0.75);
    transform: translateY(-4px) scale(1.01);
}

/* Images: full width, height auto — NEVER zoomed, NEVER cropped */
.insta-card--video img.insta-media {
    display: block;
    width: 100%;
    height: auto;
}

/* Videos: fill the card height; since videos are tall (9:16) they naturally
   define the card height; object-fit:cover is fine for video because the
   video is already taller than wide */
.insta-card--video video.insta-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

/* Give video-containing cards an explicit aspect ratio so the absolute
   video fills them properly; image cards size naturally */
.insta-card--video.is-video {
    aspect-ratio: 4/5;
}

.food-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: var(--cream);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(214, 156, 58, 0.5);
    white-space: nowrap;
    backdrop-filter: blur(5px);
    z-index: 2;
    text-transform: uppercase;
}

/* Hover bar slides up from bottom */
.insta-hover-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(to top, rgba(5,0,0,0.92) 0%, rgba(5,0,0,0.5) 55%, transparent 100%);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.insta-card--video:hover .insta-hover-bar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Glass pill button */
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.insta-btn:hover { background: rgba(214,156,58,0.3); border-color: rgba(214,156,58,0.65); }

/* ===== REVIEWS (CONTINUOUS MARQUEE) ===== */
.reviews-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

/* Optional: fade edges for a polished look */
.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}
.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 160s linear infinite; /* Slower animation for 80 total items */
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } /* Scrolls exactly half the track (the original 40) before resetting */
}

.review-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--glass-highlight); }
.review-stars { color: var(--saffron); font-size: 1.4rem; margin-bottom: 1.5rem; }
.review-text { font-style: italic; color: var(--cream); margin-bottom: 1.5rem; font-family: var(--font-serif); font-size: 1.3rem; }
.review-author { font-size: 0.9rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;}

/* ===== CATERING FORM (HOME) ===== */
.catering-section-home { position: relative; background: var(--surface); }
.catering-flex { display: flex; gap: 4rem; align-items: center; }
.catering-text { flex: 1; }
.catering-text h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.catering-form-box { flex: 1; background: var(--card); padding: 3.5rem; border-radius: var(--radius-lg); border: 1px solid var(--glass-highlight); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 1.2rem; background: var(--surface); border: 1px solid var(--glass-border); color: var(--cream); font-family: var(--font-sans); border-radius: 12px; font-size: 1rem; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--saffron); }
textarea.form-control { resize: vertical; height: 120px; min-height: 120px; padding-top: 1rem; }

/* ===== ABOUT US ===== */
.about-flex { display: flex; gap: 4rem; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.about-text p { font-size: 1.15rem; color: var(--muted); margin-bottom: 1.5rem; }
.about-image { flex: 1; position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--glass-border); }

/* ===== FAQS ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.5rem 2rem; margin-bottom: 1rem; transition: var(--transition); }
.faq-item:hover { border-color: var(--glass-highlight); }
.faq-question { font-family: var(--font-sans); font-size: 1.2rem; color: var(--cream); font-weight: 500; cursor: pointer; }
.faq-answer { color: var(--muted); display: none; margin-top: 1rem; font-size: 1rem; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--saffron); }

/* ===== LOCATION CARD ===== */
.location-card { background: var(--surface); border-radius: var(--radius-lg); display: flex; overflow: hidden; max-width: 1000px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.loc-map { width: 400px; position: relative; background: #e5e3df; }
.loc-content { flex: 1; padding: 3.5rem; display: flex; flex-direction: column; }
.loc-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--glass-border); padding-bottom: 2rem; margin-bottom: 2rem; }
.loc-title h4 { font-family: var(--font-sans); font-size: 1rem; color: var(--saffron); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em;}
.loc-title h2 { font-size: 2.5rem; margin: 0; }
.loc-btn-dir { background: var(--card); color: var(--cream); border: 1px solid var(--glass-highlight); padding: 0.8rem 1.5rem; border-radius: 12px; font-family: var(--font-sans); text-align: left; transition: var(--transition); }
.loc-btn-dir:hover { border-color: var(--cream); }
.loc-details { display: flex; gap: 4rem; margin-bottom: 2rem; }
.loc-col h5 { font-family: var(--font-sans); font-size: 1rem; color: var(--cream); font-weight: 600; margin-bottom: 1rem; opacity: 0.9;}
.loc-col p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.loc-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--glass-border); padding-top: 2rem; margin-top: auto; }
.loc-hours-text { font-size: 0.95rem; color: var(--cream); font-weight: 500;}
.loc-btn-order { background: linear-gradient(135deg, #e8ab41, #d69c3a); color: #111; padding: 1rem 2.5rem; border-radius: 30px; font-weight: 600; transition: var(--transition); border: none; box-shadow: 0 4px 15px rgba(214, 156, 58, 0.4); cursor: pointer; }
.loc-btn-order:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(214, 156, 58, 0.6); }

/* ===== REWARDS ===== */
.rewards-section { margin: 4rem 2rem; border-radius: var(--radius-lg); background: var(--maroon); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); text-align: center; box-shadow: var(--shadow); }
.rewards-content { max-width: 600px; margin: 0 auto; padding: 2rem 0; }
.rewards-content h2 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.rewards-form { display: flex; gap: 1rem; margin-top: 2rem; background: var(--maroon-dark); padding: 0.5rem; border-radius: 40px; border: 1px solid rgba(255,255,255,0.1); }
.rewards-form input { flex: 1; padding: 1rem 1.5rem; border: none; border-radius: 30px; font-family: var(--font-sans); background: transparent; color: var(--cream); font-size: 1rem; outline: none;}
.rewards-form input::placeholder { color: rgba(255,255,255,0.6); }
.rewards-form button { background: var(--saffron); color: var(--black); padding: 1rem 2rem; border: none; border-radius: 30px; font-weight: 600; cursor: pointer; text-transform: uppercase; transition: 0.3s;}
.rewards-form button:hover { background: var(--saffron-hov); transform: scale(1.02); }

/* ===== MENU PAGE SPECIFIC ===== */
.menu-hero { background: linear-gradient(to bottom, rgba(5,0,0,0.8), rgba(5,0,0,1)), url('assets/Overload Supreme.jpeg') center/cover; padding: 150px 20px 80px; border-bottom: 1px solid var(--glass-border); }
.menu-hero h1 { font-size: 4.5rem; color: var(--cream); margin-top: 1rem; }
.menu-page-content { padding: 4rem 20px; }
.menu-category { margin-bottom: 6rem; }
.menu-category-title { font-family: var(--font-serif); font-size: 3rem; color: var(--saffron); border-bottom: 1px solid var(--glass-border); padding-bottom: 0.5rem; margin-bottom: 3rem; text-align: center;}
.menu-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2.5rem; }
.menu-item-card { background: var(--card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.menu-item-card:hover { transform: translateY(-5px); border-color: var(--saffron); }
.menu-item-img { width: 100%; height: 240px; object-fit: cover; border-bottom: 1px solid var(--glass-border); }
.menu-item-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.menu-item-name { font-family: var(--font-serif); font-size: 1.6rem; color: var(--cream); font-weight: 600; flex: 1; padding-right: 1rem; line-height: 1.2; }
.menu-item-price { font-family: var(--font-sans); font-size: 1.3rem; color: var(--saffron); white-space: nowrap; font-weight: 600;}
.menu-item-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 2rem; flex: 1; }

/* ===== CATERING PAGE SPECIFIC ===== */
.catering-hero { background: linear-gradient(to bottom, rgba(5,0,0,0.8), rgba(5,0,0,1)), url('assets/Tikka Twist.jpeg') center/cover; padding: 150px 20px 80px; border-bottom: 1px solid var(--glass-border); }
.catering-hero h1 { font-size: 4.5rem; color: var(--cream); margin-top: 1rem; }
.pkg-section { padding: 60px 20px; background: var(--maroon-dark); }
.pkg-title { text-align: center; margin-bottom: 40px; }
.pkg-title h2 { font-family: var(--font-serif); font-size: 46px; color: var(--cream); font-weight: 900; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.pkg-card { background: var(--card); border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.pkg-top { padding: 25px; border-bottom: 1px solid var(--glass-border); }
.pkg-star { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 5px; }
.pkg-name { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--cream); }
.pkg-price-row { display: flex; align-items: baseline; gap: 5px; margin-top: 15px; }
.pkg-price { font-size: 42px; color: var(--saffron); font-weight: bold; }
.pkg-pp { font-size: 14px; color: var(--muted); }
.pkg-body { padding: 20px 25px; flex: 1; }
.pkg-cat { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--saffron); margin-top: 15px; margin-bottom: 10px; }
.pkg-items { list-style: none; }
.pkg-items li { font-size: 14px; color: var(--cream); padding: 4px 0; display: flex; gap: 8px; }
.pkg-items li::before { content: "•"; color: var(--saffron); }

.trays-container { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.tray-category { margin-top: 50px; }
.tray-cat-title { font-family:var(--font-serif); font-size: 32px; color: var(--saffron); text-align: center; margin-bottom: 30px; letter-spacing: 1px; }
.menu-line { display: flex; align-items: flex-end; margin-bottom: 4px; overflow: hidden; }
.menu-line-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--cream); padding-right: 15px; position: relative; z-index: 2; background: var(--black); }
.menu-line-dots { flex-grow: 1; border-bottom: 2px dotted var(--glass-border); position: relative; top: -7px; min-width: 20px;}
.menu-line-price { font-family: var(--font-sans); font-size: 18px; font-weight: bold; color: var(--saffron); padding-left: 15px; position: relative; z-index: 2; background: var(--black); white-space: nowrap; }
.menu-line-desc { font-size: 14px; color: var(--muted); margin-bottom: 25px; max-width: 80%; }

/* ===== OUR STORY PAGE SPECIFIC ===== */
.story-hero { background: linear-gradient(to bottom, rgba(5,0,0,0.7), rgba(5,0,0,1)), url('assets/dark_upscale_brick_wall.png') center/cover; padding: 180px 20px 100px; border-bottom: 1px solid var(--glass-border); }
.story-hero h1 { font-size: 5rem; color: var(--cream); margin-top: 1rem; font-family: var(--font-serif); }
.story-container { max-width: 1000px; margin: 0 auto; padding: 80px 20px; }
.story-block { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; margin-bottom: 80px; }
.story-block.reverse { flex-direction: row-reverse; }
.story-text { flex: 1; min-width: 300px; }
.story-text h2 { font-family: var(--font-serif); font-size: 38px; color: var(--cream); margin-bottom: 20px; }
.story-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 15px; }
.story-image { flex: 1; min-width: 300px; position: relative; }
.story-image img { width: 100%; border-radius: var(--radius); border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.press-section { background: var(--maroon-dark); padding: 80px 20px; text-align: center; border-radius: 20px; margin: 60px 0; border: 1px solid var(--saffron); }
.press-quote { font-family: var(--font-serif); font-size: 28px; color: var(--cream); font-style: italic; max-width: 800px; margin: 0 auto 20px; line-height: 1.4; }
.press-source { color: var(--saffron); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: bold; }
.awards-section { text-align: center; padding: 60px 20px; border-top: 1px dotted var(--glass-border); }
.awards-section h3 { font-family: var(--font-serif); font-size: 32px; margin-bottom: 40px; color: var(--cream); }

/* ===== REWARDS NAV LINK ===== */
.nav-rewards-link {
    background: linear-gradient(135deg, var(--saffron), #e67e00);
    color: #000 !important;
    padding: 6px 14px !important;
    border-radius: 20px;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-rewards-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(214,156,58,0.5);
    color: #000 !important;
}

/* ===== INSTAGRAM FRAME UI ===== */
.ig-frame {
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: inherit;
    overflow: hidden;
}
.ig-frame-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #111;
}
.ig-frame-user {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-sans);
}
.ig-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}
.ig-more { cursor: pointer; opacity: 0.8; flex-shrink: 0; }
.ig-frame img.insta-media {
    display: block;
    width: 100%;
    height: auto;
}
.ig-frame-bottom {
    padding: 10px 14px 14px;
    background: #111;
}
.ig-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.ig-action-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ig-action-left svg, .ig-actions > svg {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}
.ig-action-left svg:hover, .ig-actions > svg:hover { transform: scale(1.15); opacity: 1; }
.ig-caption {
    font-size: 12.5px;
    color: #d0d0d0;
    font-family: var(--font-sans);
    line-height: 1.4;
}
.ig-caption strong { color: #fff; }

/* ===== FOOTER (PREMIUM GRID) ===== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 10;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr auto;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-logo { height: 75px; opacity: 0.9; filter: drop-shadow(0 0 10px rgba(255,255,255,0.08)); align-self: flex-start; }
.footer-tagline { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-top: 0.25rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer-socials a { color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; }
.footer-socials a:hover { color: var(--saffron); transform: translateY(-2px); }

.footer-nav-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-col h5 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.5rem; }
.footer-nav-col a { color: var(--muted); font-size: 0.9rem; font-weight: 400; transition: color 0.2s ease; }
.footer-nav-col a:hover { color: var(--cream); }
.footer-hours { color: var(--muted); font-size: 0.85rem; margin: 0; line-height: 1.8; }

.footer-cta-col { display: flex; align-items: flex-start; padding-top: 1.8rem; }
.footer-order-btn {
    background: var(--saffron);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,156,58,0.4); }

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.07);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-addr { color: #555; font-size: 0.8rem; margin: 0; }
.footer-copy { color: #444; font-size: 0.8rem; margin: 0; }

/* ===== CATERING & ABOUT FLEX LAYOUTS ===== */
.catering-flex, .about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}
.catering-text, .about-text {
    flex: 1;
    min-width: 300px;
}
.catering-form-box, .about-image {
    flex: 1;
    min-width: 300px;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}
.catering-form-box {
    background: #111;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    width: 100%;
    height: 55px;
    padding: 1rem 1.5rem;
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--saffron);
}
.btn-full {
    width: 100%;
}

/* ===== LOCATION CARD (BOMBAY BRASSERIE STYLE) ===== */
.location-section {
    background: #050000;
}
.location-card {
    display: flex;
    flex-direction: row;
    background: #111;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.loc-map {
    flex: 1;
    min-width: 300px;
    background: #222;
}
.loc-content {
    flex: 1;
    min-width: 300px;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}
.loc-title h4 {
    font-size: 1.2rem;
    color: var(--saffron);
    margin-bottom: 0.5rem;
}
.loc-title h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin: 0;
}
.loc-btn-dir {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-align: center;
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    transition: var(--transition);
}
.loc-btn-dir:hover {
    background: var(--saffron);
    color: #000;
    border-color: var(--saffron);
}
.loc-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}
.loc-col h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--saffron);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.loc-col p {
    color: var(--muted);
    line-height: 1.8;
}
.loc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.loc-hours-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
}
.loc-btn-order {
    background: var(--saffron);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.loc-btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214,156,58,0.4);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #050000;
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.8);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    color: #f4f0ea;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mobile-nav .btn {
    margin-top: auto;
    font-size: 1rem;
    padding: 1rem;
}
.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #f4f0ea;
    cursor: pointer;
}

/* ===== PREMIUM TRUST SECTION ===== */
.premium-trust-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.trust-card {
    background: var(--surface);
    border: 1px solid rgba(214, 156, 58, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(214, 156, 58, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 156, 58, 0.5);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(214, 156, 58, 0.1);
}

.trust-eyebrow {
    color: var(--saffron);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-family: var(--font-serif);
}

.trust-meta {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-sans);
}

.trust-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.trust-card .btn-outline {
    border-color: var(--saffron);
    color: var(--saffron);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.trust-card .btn-outline:hover {
    background: var(--saffron);
    color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-cta-col { padding-top: 0; }
    .insta-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .premium-trust-section { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
    .trust-card { padding: 2rem 1.5rem; }
    .container { padding: 0 1.5rem; }
    .hero { min-height: 70vh; padding-bottom: 3rem; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .section-padding { padding: 3rem 0; }
    .menu-preview-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .mp-card { height: 250px; }
    .offers-grid { grid-template-columns: 1fr 1fr; max-width: none; gap: 1rem; }
    .trust-badges { flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
    .hero-content { text-align: center; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto 1.5rem; gap: 1rem; }
    .hero-btns .btn { width: 100%; }
    
    /* Missing Responsive Rules for Locations & Catering */
    .location-card { flex-direction: column; }
    .loc-content { padding: 1.5rem; text-align: center; }
    .loc-header { flex-direction: column; align-items: center; gap: 1rem; }
    .loc-details { flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; align-items: center; font-size: 0.95rem; }
    .loc-footer { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
    .loc-map { width: 100%; min-height: 350px; height: 350px; }
    .catering-flex, .about-flex { flex-direction: column; gap: 2rem; text-align: center; }
    .catering-form-box { padding: 1.5rem; width: 100%; }
    
    .story-block, .story-block.reverse { flex-direction: column; text-align: center; gap: 1.5rem; }
    .story-text h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-brand { align-items: center; }
    .footer-logo { align-self: center; }
    .footer-socials { justify-content: center; }
    .footer-cta-col { align-items: center; justify-content: center; }
    .footer-bottom-bar { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 0.95rem; }
    .section-header h2 { font-size: 1.8rem; }
    .section-padding { padding: 2.5rem 0; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    .nav-inner { padding: 0.2rem 0; }
    .logo-img { height: 50px; }
    .insta-grid-4 { grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
    .mp-card h3 { font-size: 1.6rem; }
    .trust-badges { display: none; } /* Hide badges on very small screens to avoid clutter */
}

input[type="date"].form-control { -webkit-appearance: none; appearance: none; height: 56px !important; min-height: 56px !important; padding: 0 1.5rem !important; box-sizing: border-box !important; }
  
/* Play Button Overlay for Instagram Cards */  
.insta-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 2; transition: background 0.3s ease; }  
.insta-play-btn::after { content: ''; display: block; margin-left: 5px; border-style: solid; border-width: 15px 0 15px 25px; border-color: transparent transparent transparent #fff; }  
.insta-card--video:hover .insta-play-btn { background: var(--primary); }
