/* ═══════════════════════════════════════════════════════════════
   Pizza Stop Wellsford — Premium Dark Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Brand Identity */
    --primary-color: #E63946;
    --primary-dark: #C62828;
    --primary-light: #FF6B6B;

    --secondary-color: #F4A940;
    --secondary-dark: #D4882A;
    --secondary-light: #FFD166;

    /* Dark Theme Palette */
    --bg-color: #0D0D0D;
    --bg-dark: #141414;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --bg-elevated: #1E1E1E;

    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --text-light: #6A6A6A;
    --text-inverse: #FFFFFF;
    --text-dark: var(--text-primary);
    --text-muted: var(--text-secondary);

    --surface: #1A1A1A;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --success: #22C55E;
    --error: #EF4444;
    --overlay: rgba(0, 0, 0, 0.82);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-ui: var(--font-body);
    --font-accent: 'Satisfy', cursive;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --radius: var(--radius-md);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.15);

    --gold-gradient: linear-gradient(135deg, var(--secondary-color) 0%, #E6A020 50%, var(--secondary-light) 100%);
    --red-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient glow background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 600px at 20% 10%, rgba(230, 57, 70, 0.06), transparent),
        radial-gradient(ellipse 600px 500px at 80% 90%, rgba(244, 169, 64, 0.05), transparent),
        radial-gradient(ellipse 500px 400px at 50% 50%, rgba(230, 57, 70, 0.02), transparent);
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: rgba(230, 57, 70, 0.3);
    color: #fff;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic-tagline {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.muted-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul { list-style: none; }

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

/* ─── Section Title ─── */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 0 auto 3rem;
}

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

/* ─── Layout ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

/* ─── Ornaments ─── */
.corner-ornament {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 50;
    opacity: 0.3;
}

.corner-ornament--tl { top: 16px; left: 16px; }
.corner-ornament--tr { top: 16px; right: 16px; transform: scaleX(-1); }
.corner-ornament--bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
.corner-ornament--br { bottom: 16px; right: 16px; transform: scale(-1); }

/* ─── Background Canvas ─── */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.25;
}

.bg-ornament, .leaf-ornament, .gold-particle { display: none; }

/* ─── Olive Divider ─── */
.olive-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.olive-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(244, 169, 64, 0.4), transparent);
}

.olive-branch {
    width: 36px;
    height: 20px;
    opacity: 0.6;
}

/* ─── Background Sections ─── */
.bg-beige {
    background-color: var(--bg-dark);
}

.bg-blue {
    background: linear-gradient(135deg, #1A0A08 0%, #0D0D0D 50%, #0A0A12 100%);
    color: var(--text-primary);
}

.bg-blue h2, .bg-blue h3 {
    color: var(--secondary-color);
}

/* ═══════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    border: 2px solid transparent;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--red-gradient);
    color: var(--text-inverse);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 169, 64, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   Header & Navigation
   ═══════════════════════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-ui);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    padding: 0.5rem;
    transition: var(--transition);
    z-index: 1100;
}

.hamburger:hover {
    color: var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.15;
    filter: brightness(0.5) saturate(0.8);
}

.hero-overlay-clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(13, 13, 13, 0.6) 40%,
        rgba(13, 13, 13, 0.7) 70%,
        rgba(13, 13, 13, 0.95) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-brand {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-center {
    height: 160px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(230, 57, 70, 0.2));
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: var(--text-inverse);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-tagline {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.hero-badge {
    background: var(--red-gradient);
    color: var(--text-inverse);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.hero-main-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    margin-bottom: 1.5rem;
    color: var(--text-inverse);
    letter-spacing: -0.01em;
    line-height: 1.1;
    font-weight: 800;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: var(--transition);
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.location-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.location-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.location-text strong {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   About Preview
   ═══════════════════════════════════════════════════════════════ */
.about-preview {
    text-align: center;
    background: var(--bg-dark);
}

.about-preview p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   Featured Dishes / Popular Items
   ═══════════════════════════════════════════════════════════════ */
.featured-dishes {
    background: var(--bg-color);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.2);
}

.dish-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.dish-info {
    padding: 1.5rem;
    text-align: center;
}

.dish-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.dish-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Item Card (used by popular items from API) */
.item-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.2);
}

.item-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-elevated);
}

.item-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.item-card:hover .item-card-img img {
    transform: scale(1.08);
}

.item-card-img .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red-gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.item-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    letter-spacing: 0;
}

.item-card-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.item-card-body .price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Steam Effect */
.steam-effect { display: none; }

/* ═══════════════════════════════════════════════════════════════
   Gallery Section
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.85);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1);
}

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

/* ═══════════════════════════════════════════════════════════════
   Testimonials
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(230, 57, 70, 0.15);
    transform: translateY(-4px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.6;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA Section
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/hero_image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), transparent, rgba(244, 169, 64, 0.06));
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */
footer {
    background: #080808;
    color: var(--text-inverse);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 600;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--text-inverse);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   Page Header (About, Menu, Contact)
   ═══════════════════════════════════════════════════════════════ */
.page-header {
    height: 45vh;
    min-height: 350px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero_image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.page-header-subtitle {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.page-header-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.page-header-cta .btn {
    font-size: 0.75rem;
    padding: 12px 30px;
}

.page-header-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-inverse);
}

.page-header-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   Menu Page
   ═══════════════════════════════════════════════════════════════ */
.menu-section {
    padding-bottom: 2rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 169, 64, 0.2);
    box-shadow: var(--shadow-md);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.download-menu {
    text-align: center;
    margin-top: 3rem;
}

.menu-category-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -0.01em;
}

.menu-category-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   Contact Page
   ═══════════════════════════════════════════════════════════════ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.info-item p a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════════════════════════
   About Page
   ═══════════════════════════════════════════════════════════════ */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}

.about-text ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.about-image img {
    border-radius: var(--radius-md);
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(244, 169, 64, 0.3);
    border-radius: var(--radius-md);
    pointer-events: none;
    transition: var(--transition);
}

.about-image:hover::after {
    border-color: rgba(244, 169, 64, 0.5);
    inset: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-brand { animation: fadeInUp 1s ease 0.2s both; }
.olive-divider { animation: fadeInUp 1s ease 0.4s both; }
#hero-rating { animation: fadeInUp 1s ease 0.5s both; }
.hero-main-heading { animation: fadeInUp 1s ease 0.6s both; }
.hero-description { animation: fadeInUp 1s ease 0.7s both; }
.location-badge { animation: fadeInUp 1s ease 0.8s both; }
.hero-btns { animation: fadeInUp 1s ease 0.9s both; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.15); }
    50% { box-shadow: 0 0 40px rgba(230, 57, 70, 0.25); }
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper,
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .nav-container {
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 1050;
        padding: 4rem 2rem;
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        letter-spacing: 3px;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 100px 1.5rem 60px;
    }

    .hero-main-heading {
        font-size: 2.5rem !important;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-logo-center {
        height: 120px;
    }

    .location-badge {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 280px;
    }

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

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 16px 20px;
    }

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

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

    .footer-logo img {
        margin: 0 auto 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .corner-ornament {
        width: 30px;
        height: 30px;
        opacity: 0.2;
    }

    header {
        height: auto;
    }

    .logo img {
        max-height: 45px;
    }

    .page-header {
        margin-top: 70px;
        min-height: 280px;
    }

    .page-header-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .page-header-cta .btn {
        width: 100%;
        text-align: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SIPO Status Strip
   ═══════════════════════════════════════════════════════════════ */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: var(--success);
    color: var(--text-inverse);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    animation: stripSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes stripSlideIn {
    to { transform: translateY(0); }
}

.status-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.status-strip.closed {
    background: var(--error);
}

.status-strip.closed .status-strip-dot {
    background: #fff;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.status-strip.error .status-strip-dot {
    background: var(--secondary-color);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.status-strip-text {
    font-weight: 500;
    line-height: 1.3;
}

.countdown-timer {
    font-weight: 700;
    color: var(--secondary-color);
    font-variant-numeric: tabular-nums;
}

/* Push header and content down when strip is present */
body.has-status-strip {
    --strip-height: 40px;
}

body.has-status-strip header {
    top: var(--strip-height, 40px);
}

body.has-status-strip .hero {
    padding-top: calc(120px + var(--strip-height, 40px));
}

body.has-status-strip .page-header {
    margin-top: calc(90px + var(--strip-height, 40px));
}

@media (max-width: 768px) {
    .status-strip {
        font-size: 0.7rem;
        padding: 8px 0;
    }

    body.has-status-strip .hero {
        padding-top: calc(100px + var(--strip-height, 36px));
    }

    body.has-status-strip .page-header {
        margin-top: calc(70px + var(--strip-height, 36px));
    }
}

/* ═══════════════════════════════════════════════════════════════
   SIPO Modal Overlay System
   ═══════════════════════════════════════════════════════════════ */
.sipo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sipo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sipo-modal {
    background: linear-gradient(145deg, #1A1A1A 0%, #0D0D0D 100%);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    color: var(--text-inverse);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(230, 57, 70, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sipo-modal-overlay.active .sipo-modal {
    transform: scale(1) translateY(0);
}

.sipo-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.sipo-modal-close:hover {
    color: var(--text-inverse);
    transform: rotate(90deg);
}

.sipo-modal-icon {
    margin-bottom: 1.2rem;
}

.sipo-modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.sipo-modal-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sipo-modal-text strong {
    color: var(--secondary-color);
}

.sipo-modal-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sipo-modal .btn-primary {
    background: var(--red-gradient);
    color: var(--text-inverse);
    border: none;
}

.sipo-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.sipo-modal .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-inverse);
}

.sipo-modal .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   Menu Category Tabs (Dynamic API)
   ═══════════════════════════════════════════════════════════════ */
.menu-tab {
    padding: 10px 22px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(230, 57, 70, 0.05);
}

.menu-tab.active {
    background: var(--red-gradient);
    color: var(--text-inverse);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   Menu Cards (Dynamic API Items)
   ═══════════════════════════════════════════════════════════════ */
.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.2);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.menu-card-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 1.5em;
}

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

.menu-card-footer .price {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.menu-card-footer .order-link {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-card-footer .order-link:hover {
    color: var(--primary-light);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   Footer Hours Alignment
   ═══════════════════════════════════════════════════════════════ */
#footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

#footer-hours li:last-child {
    border-bottom: none;
}

#footer-hours .day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    min-width: 40px;
}

#footer-hours .time {
    text-align: right;
    color: var(--text-secondary);
    white-space: nowrap;
}

.closed-day {
    color: var(--error) !important;
    font-style: italic;
}

/* Contact hours */
#contact-hours-table {
    font-size: 0.95rem;
}

#contact-hours-table .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

#contact-hours-table .hours-row:last-child {
    border-bottom: none;
}

#contact-hours-table .day {
    font-weight: 500;
    color: var(--text-primary);
}

#contact-hours-table .time {
    text-align: right;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   Google Rating Badge (API injected)
   ═══════════════════════════════════════════════════════════════ */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.google-rating-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.google-rating-badge .rating-stars {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.google-rating-badge .rating-num {
    font-weight: 700;
    color: var(--secondary-color);
}

.google-rating-badge .rating-label {
    opacity: 0.7;
}

/* Footer rating override */
footer .google-rating-badge {
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 0.8rem;
    border-radius: 12px;
    width: 100%;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

footer .google-rating-badge .rating-label {
    width: 100%;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 0.3rem;
}

.sipo-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.sipo-rating-stars {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.sipo-rating a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sipo-rating a:hover {
    color: var(--secondary-color);
}

footer .sipo-rating {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

footer .sipo-rating-stars {
    color: var(--secondary-color);
}

/* ═══════════════════════════════════════════════════════════════
   Back to Top Button
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: var(--text-inverse);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   Ordering Disabled State
   ═══════════════════════════════════════════════════════════════ */
body.ordering-disabled [data-order-url] {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   Loading Spinner for Menu
   ═══════════════════════════════════════════════════════════════ */
#menu-loading {
    color: var(--text-secondary) !important;
}

#menu-loading p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive Modal (Small Screens)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .sipo-modal {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
        margin: 0 1rem;
    }

    .sipo-modal-title {
        font-size: 1.3rem;
    }

    .sipo-modal-text {
        font-size: 0.88rem;
    }
}