/* ============================================================
   YOUNGSTOWN MARKETSIDE - STYLES
   ============================================================ */

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

:root {
    /* Enhanced Vibrant Colors */
    --cream: #F5F2EB;
    --cream-dark: #EBE6DB;
    --forest: #2D5016;
    --forest-light: #4A6741;
    --forest-bright: #5A8A3A;
    --tomato: #D32F2F;
    --tomato-bright: #F44336;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-bright: #FFD700;
    --brown: #6B4423;
    --brown-light: #8B7355;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --stone: #5A5A5A;
    --stone-light: #8A8A8A;
    
    /* Accent Colors */
    --accent-green: #66BB6A;
    --accent-orange: #FF8A65;
    --accent-red: #E53935;
    
    /* Shadow Elevation System */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.25);
    --shadow-forest: 0 4px 16px rgba(45, 80, 22, 0.2);
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'DM Sans', system-ui, sans-serif;
}

/* ============ Custom Selection ============ */
::selection {
    background: var(--gold);
    color: var(--charcoal);
}

::-moz-selection {
    background: var(--gold);
    color: var(--charcoal);
}

/* ============ Cursor States ============ */
a, button, [role="button"], .category-card, .menu-tab, .blog-card {
    cursor: pointer;
}

input, textarea {
    cursor: text;
}

input[type="submit"], input[type="button"] {
    cursor: pointer;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure minimum font size for readability */
body, p, li, span {
    font-size: clamp(16px, 1rem, 18px);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
    padding: 0 2rem;
    }
}

/* ============ Header ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #000;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 80px;
        padding: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 54px;
    flex-shrink: 0;
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo-frame {
    position: relative;
    padding: 6px 10px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 2px;
}

@media (min-width: 375px) {
    .header-logo-frame {
        padding: 8px 14px;
    }
}

@media (min-width: 480px) {
    .header-logo-frame {
        padding: 8px 16px;
    }
}

.header-logo-border-inner {
    position: absolute;
    inset: 2px;
    border: 1px solid var(--gold);
    border-radius: 1px;
    pointer-events: none;
}

@media (min-width: 480px) {
    .header-logo-border-inner {
        border-width: 2px;
    }
}

.header-logo-text-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.header-logo-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 8px;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
}

.header-logo-text-top {
    font-size: 8px;
}

.header-logo-leaf {
    width: 10px;
    height: 10px;
    color: var(--forest-bright);
    display: inline-block;
    flex-shrink: 0;
}

.header-logo-leaf.left {
    transform: scaleX(-1);
}

.header-logo-leaf.right {
    transform: scaleX(1);
}

.header-logo-text-bottom {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
    margin-top: 1px;
}

@media (min-width: 375px) {
    .header-logo-top-row {
        gap: 5px;
        font-size: 9px;
    }
    
    .header-logo-text-top {
        font-size: 9px;
    }
    
    .header-logo-leaf {
        width: 11px;
        height: 11px;
    }
    
    .header-logo-text-bottom {
        font-size: 11px;
        letter-spacing: 0.1em;
    }
}

@media (min-width: 480px) {
    .header-logo-top-row {
        gap: 6px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }
    
    .header-logo-text-top {
        font-size: 10px;
    }
    
    .header-logo-leaf {
        width: 12px;
        height: 12px;
    }
    
    .header-logo-text-bottom {
        font-size: 12px;
        margin-top: 2px;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .header-logo-frame {
        padding: 10px 20px;
    }
    
    .header-logo-top-row {
        font-size: 12px;
        gap: 8px;
    }
    
    .header-logo-text-top {
        font-size: 12px;
    }
    
    .header-logo-leaf {
        width: 14px;
        height: 14px;
    }
    
    .header-logo-text-bottom {
        font-size: 14px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-link:hover {
    color: var(--gold);
}

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

.nav-link.active {
    color: var(--gold);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.btn-order {
    padding: 0.625rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-order-now {
    background-color: var(--gold);
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-order-now i {
    font-size: 0.875rem;
}

.btn-order-now:hover {
    background-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-order-catering {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-order-catering:hover {
    background-color: #fff;
    color: #000;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    min-width: 48px;
    min-height: 48px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background-color: rgba(255, 255, 255, 0.1);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
    display: none;
    }
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 40;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-link.active {
    color: var(--gold);
    border-left-color: var(--gold);
}

.btn-order-mobile {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-order-mobile.btn-order-now {
    background-color: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-order-mobile.btn-order-now i {
    font-size: 1rem;
}

/* ============ Hero ============ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
}

.hero-background {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform-origin: center center;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease;
}

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

.logo-frame {
    position: relative;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #fff;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

@media (min-width: 480px) {
    .logo-frame {
        padding: 20px 40px;
    }
}

.logo-border-outer {
    position: absolute;
    inset: 0;
    border: 1px solid #fff;
    border-radius: 4px;
    pointer-events: none;
}

.logo-border-inner {
    position: absolute;
    inset: 3px;
    border: 3px solid var(--gold);
    border-radius: 2px;
    pointer-events: none;
}

.logo-text-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-text-top {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
}

.logo-leaf {
    width: 24px;
    height: 24px;
    color: var(--forest-bright);
    filter: drop-shadow(0 0 4px rgba(90, 138, 58, 0.5));
    display: inline-block;
    flex-shrink: 0;
}

.logo-leaf.left {
    transform: scaleX(-1);
}

.logo-leaf.right {
    transform: scaleX(1);
}

.logo-text-bottom {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .logo-frame {
        padding: 30px 60px;
    }
    
    .logo-text-top {
        font-size: 2rem;
    }
    
    .logo-leaf {
        width: 32px;
        height: 32px;
    }
    
    .logo-text-bottom {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .logo-frame {
        padding: 40px 80px;
    }
    
    .logo-text-top {
        font-size: 2.5rem;
    }
    
    .logo-leaf {
        width: 40px;
        height: 40px;
    }
    
    .logo-text-bottom {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button icon animations */
.btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover i {
    transform: scale(1.1);
}

/* Phone icon wiggle on hover */
.btn:hover .fa-phone {
    animation: phoneWiggle 0.5s ease-in-out;
}

@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Arrow slide on hover */
.btn:hover .fa-arrow-right {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    min-height: 52px;
}

@media (max-width: 480px) {
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }
}

.btn-secondary {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* ============ Sections ============ */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.section-title.white {
    color: #fff;
}

.section-subtitle {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    color: var(--stone);
    margin-top: 0.5rem;
    line-height: 1.7;
    text-wrap: balance;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wavy-divider {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0;
}

.wavy-divider svg {
    width: 200px;
    height: 12px;
}

.wavy-divider.forest path {
    stroke: var(--forest);
}

.wavy-divider.gold path {
    stroke: var(--gold);
}

/* ============ Categories ============ */
.categories-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .categories-section {
        padding: 4.5rem 0;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--cream-dark) 0%, #fff 100%);
}

.category-card:hover .category-image {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    filter: brightness(1) saturate(1.05);
}

.category-card:hover .category-img {
    transform: scale(1.1);
    filter: brightness(1.08) saturate(1.15);
}

/* Vignette overlay - always visible, intensifies on hover */
.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 1;
    transition: opacity 0.4s ease, background 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover .category-image::before {
    background: 
        radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
}

.category-card:hover .category-image::before {
    opacity: 1;
}

/* Add subtle border glow */
.category-image::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--forest-bright) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.category-card:hover .category-image::after {
    opacity: 0.3;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--forest-bright);
}

.category-description {
    color: var(--stone);
    font-size: 0.875rem;
}

/* ============ About Section ============ */
.about-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--forest-bright) 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

@media (min-width: 768px) {
    .about-section {
        padding: 4.5rem 0;
    }
}

.about-text {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============ Catering Section ============ */
.catering-section {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .catering-section {
        padding: 5rem 0;
    }
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .catering-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .catering-grid {
        gap: 4rem;
    }
}

.catering-content .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.catering-content .section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

.catering-content .wavy-divider {
    justify-content: flex-start;
    margin: 1.5rem 0;
}

.catering-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 1.5rem;
}

.catering-list {
    list-style: none;
    margin-bottom: 2rem;
}

.catering-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--charcoal);
}

.catering-list li i {
    color: var(--forest-bright);
    font-size: 0.875rem;
}

.catering-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .catering-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.catering-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-secondary-dark:hover {
    background: var(--forest);
    color: #fff;
}

.catering-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Decorative corner accents */
.catering-image::before,
.catering-image::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.catering-image::before {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.catering-image::after {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.catering-image:hover::before,
.catering-image:hover::after {
    opacity: 1;
    transform: scale(1.05);
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============ Testimonials ============ */
.testimonials-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 4.5rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    color: var(--gold-bright);
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-text {
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    color: var(--forest-bright);
}

/* ============ Menu Section ============ */
.menu-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}

@media (min-width: 768px) {
    .menu-section {
        padding: 4.5rem 0;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--stone);
    margin-top: 0.5rem;
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--forest);
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    min-height: 48px;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
}

@media (max-width: 480px) {
    .menu-tab {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
}

.menu-tab:hover {
    background: var(--forest);
    color: #fff;
    transform: translateY(-2px);
}

.menu-tab.active {
    background: var(--forest);
    color: #fff;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

.menu-category-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.menu-category-note {
    color: var(--stone);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
}

.menu-item {
    padding: 1.375rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .menu-item {
        padding: 1.25rem;
    }
    
    .menu-item-name {
        font-size: 1rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--forest);
    border-left-width: 6px;
    background: linear-gradient(to right, rgba(45, 80, 22, 0.02), #fff);
}

.menu-item:hover .menu-item-price {
    color: var(--gold);
}

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

.menu-item-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.menu-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--forest);
    font-size: 1.1875rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.menu-item-desc {
    color: var(--stone);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.menu-item-note {
    color: var(--stone);
    font-size: 0.8125rem;
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.menu-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--forest);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.menu-badge.vegetarian,
.menu-badge.v {
    background: var(--accent-green);
}

.menu-badge.gf {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.menu-item-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.menu-badge-note {
    font-size: 0.8125rem;
    color: var(--stone);
    font-style: italic;
}

.menu-item-dietary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--stone);
    font-style: italic;
}

.pizza-info {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.pizza-note {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pizza-hours {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
}

.pizza-extras {
    background: var(--cream-dark);
    padding: 1.75rem;
    border-radius: 12px;
    margin-top: 2.5rem;
}

.extras-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .extras-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.extras-column p {
    color: var(--charcoal);
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
}

.reheat-note {
    text-align: center;
    color: var(--stone);
    font-style: italic;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ============ Blog Section ============ */
.blog-section {
    padding: 3rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .blog-section {
        padding: 4.5rem 0;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* Vignette for blog images */
.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 0.5;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Directional shadow shift on hover */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    box-shadow: -8px 16px 32px rgba(0, 0, 0, 0.12);
}

.blog-content {
    padding: 1.375rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--stone);
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: block;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--forest);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--forest-bright);
    gap: 0.75rem;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* ============ Location ============ */
.location-section {
    background-color: var(--cream-dark);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .location-section {
        padding: 4.5rem 0;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.location-icon {
    color: var(--forest-bright);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.location-label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.location-value {
    color: var(--stone);
    font-size: 0.875rem;
}

.location-special {
    color: var(--forest-bright);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.location-note {
    margin-top: 1rem;
    color: var(--stone);
    font-size: 0.9375rem;
    font-style: italic;
}

.location-map {
    aspect-ratio: 16 / 9;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    min-height: 250px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--cream-dark);
}

/* Decorative frame corners */
.location-map::before,
.location-map::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid var(--forest);
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.location-map::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.location-map::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
}

.location-map:hover::before,
.location-map:hover::after {
    opacity: 1;
}

@media (max-width: 480px) {
    .location-map {
        min-height: 200px;
        border-radius: 8px;
    }
    
    .location-map::before,
    .location-map::after {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    
    .location-map::before {
        top: 6px;
        left: 6px;
    }
    
    .location-map::after {
        bottom: 6px;
        right: 6px;
    }
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============ Footer ============ */
.footer {
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    color: #fff;
    padding: 3rem 0 2rem;
    position: relative;
}

/* Gradient fade at top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2.5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand-tagline {
    color: var(--stone);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.15) rotate(5deg);
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-list {
    list-style: none;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-list a:hover {
    color: #fff;
}

.footer-list a:hover::after {
    width: 100%;
}

.footer-special {
    color: var(--gold);
    padding-top: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact-item address {
    font-style: normal;
    line-height: 1.6;
}

.footer-icon {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.25rem;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Women-owned badge styling */
.footer-bottom p:nth-child(2) {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 500;
    margin: 0.75rem 0;
}

.footer-bottom p:nth-child(2)::before {
    content: '♥';
    color: var(--gold);
}

/* ============ Features Section ============ */
.features-section {
    padding: 3rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .features-section {
        padding: 4rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-bright) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.25);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.35);
}

.feature-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--stone);
    line-height: 1.6;
}

/* ============ Promo Banner ============ */
.promo-banner {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--forest-bright) 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 4rem 0;
    }
}

.promo-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.benefit-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.benefit-pill i {
    color: var(--gold-light);
    font-size: 0.75rem;
}

.promo-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .promo-title {
        font-size: 2.75rem;
    }
}

.promo-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.promo-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-note i {
    font-size: 0.75rem;
}

/* ============ Footer Enhancements ============ */
.footer-connect {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 0;
    margin: 1.75rem 0;
    text-align: center;
}

.footer-connect-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-social-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-large:hover {
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link-large i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link-large:hover i {
    transform: scale(1.15);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ============ Newsletter Form ============ */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 48px;
}

@media (max-width: 480px) {
    .newsletter-input {
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group .btn {
        width: 100%;
    }
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.3s ease;
}

.newsletter-input:focus::placeholder {
    opacity: 0.4;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.15);
}

.form-message {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.5rem;
    text-align: center;
}

.form-message.success {
    color: var(--gold-light);
}

.form-message.error {
    color: #ff6b6b;
}

.promo-phone {
    margin-top: 1rem;
    font-size: 1rem;
}

.promo-phone a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.promo-phone a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 12px rgba(244, 208, 63, 0.5);
}

/* ============ Gallery Section ============ */
.gallery-section {
    padding: 4rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 6rem 0;
    }
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ Testimonial Ratings ============ */
.testimonial-rating {
        display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold-bright);
    font-size: 0.875rem;
    }
    
.testimonials-footer {
        text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    }
    
.testimonials-footer.visible {
    opacity: 1;
    transform: translateY(0);
    }
    
.testimonials-stats {
    display: flex;
    align-items: center;
        justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    font-family: var(--font-display);
}

.stat-stars {
    font-size: 1.5rem;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
}

.stat-text {
    color: var(--stone);
    font-size: 1rem;
}

/* ============ Menu Search ============ */
.menu-nav-wrapper {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .menu-nav-wrapper {
        margin-bottom: 2.5rem;
    }
}

.menu-search {
    position: relative;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    border: 2px solid var(--forest);
    border-radius: 8px;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    min-height: 48px;
}

@media (max-width: 480px) {
    .search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (min-width: 768px) {
    .menu-search {
        transition: max-width 0.3s ease;
    }
    
    .menu-search:focus-within {
        max-width: 500px;
    }
}

.search-input:focus {
    outline: none;
    border-color: var(--forest-bright);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.12), var(--shadow-md);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--stone);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon,
.menu-search:focus-within .search-icon {
    color: var(--forest-bright);
}

.menu-item.hidden {
    display: none;
}

.menu-category.hidden {
    display: none;
}

.pizza-info.hidden,
.pizza-extras.hidden {
    display: none;
}

/* ============ Back to Top Button ============ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 56px;
    min-height: 56px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }
}

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

.back-to-top:hover {
    background: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============ Loading Overlay ============ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--cream-dark);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ Fade In Animation ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Fade In Up Animation (for staggered cards) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============ Accessibility ============ */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--forest);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
    transform: translateY(-100%);
}

.skip-link:focus {
    top: 0;
    transform: translateY(0);
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Ensure all interactive elements are keyboard accessible */
button, a, input, textarea, select {
    min-height: 44px;
    min-width: 44px;
}

/* Touch target improvements for mobile */
@media (max-width: 768px) {
    .btn, .btn-order, .menu-tab, .nav-link, .mobile-nav-link {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        min-width: 48px;
        min-height: 48px;
    }
}

/* ============ Performance ============ */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* ============ Mobile Optimizations ============ */

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
    /* Features section */
    .feature-icon {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    /* Catering section */
    .catering-grid {
        gap: 2rem;
    }
    
    .catering-image::before,
    .catering-image::after {
        width: 40px;
        height: 40px;
    }
    
    /* Newsletter benefits */
    .newsletter-benefits {
        gap: 0.5rem;
    }
    
    .benefit-pill {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Promo section */
    .promo-title {
        font-size: 1.75rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    /* Footer social */
    .footer-social-large {
        gap: 1rem;
    }
    
    .social-link-large {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Testimonial cards */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 2rem;
    }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .categories-grid,
    .testimonials-grid,
    .blog-grid {
        gap: 1.5rem;
    }
    
    .menu-items {
        gap: 1rem;
    }
    
    .menu-item {
        padding: 1.25rem;
    }
    
    /* Menu item badges */
    .menu-item-badges {
        flex-wrap: wrap;
        gap: 0.375rem;
    }
    
    .menu-badge {
        font-size: 0.625rem;
        padding: 0.1875rem 0.375rem;
    }
    
    .menu-badge-note {
        font-size: 0.75rem;
        width: 100%;
        margin-top: 0.25rem;
    }
    
    .menu-item-dietary {
        flex-wrap: wrap;
        font-size: 0.75rem;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Category images mobile styling */
    .category-image {
        border-radius: 20px;
        margin-bottom: 1.25rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .category-img {
        border-radius: 20px;
    }
    
    .category-image::before,
    .category-image::after {
        border-radius: 20px;
    }
    
    /* Features section */
    .features-section {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1.25rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin: 0;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-description {
        font-size: 0.8125rem;
    }
    
    /* Newsletter section */
    .promo-banner {
        padding: 2rem 0;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-benefits {
        gap: 0.375rem;
        margin-bottom: 1rem;
    }
    
    .benefit-pill {
        padding: 0.3125rem 0.625rem;
        font-size: 0.6875rem;
    }
    
    .benefit-pill i {
        font-size: 0.625rem;
    }
    
    /* Catering section */
    .catering-section {
        padding: 2.5rem 0;
    }
    
    .catering-content .section-title {
        font-size: 1.5rem;
    }
    
    .catering-text {
        font-size: 0.9375rem;
    }
    
    .catering-list li {
        font-size: 0.9375rem;
        padding: 0.375rem 0;
    }
    
    .catering-cta .btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }
    
    .catering-image::before,
    .catering-image::after {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    
    .catering-image::before {
        top: 8px;
        left: 8px;
    }
    
    .catering-image::after {
        bottom: 8px;
        right: 8px;
    }
    
    /* Blog section */
    .blog-title {
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        font-size: 0.875rem;
    }
    
    .blog-tag {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
    
    .testimonial-author {
        font-size: 0.875rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-brand-title {
        font-size: 1.25rem;
    }
    
    .footer-connect {
        padding: 1.25rem 0;
        margin: 1.25rem 0;
    }
    
    .footer-connect-title {
        font-size: 1rem;
    }
    
    .footer-social-large {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-link-large {
        justify-content: center;
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-bottom p:nth-child(2) {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Location section */
    .location-info .section-title {
        font-size: 1.5rem;
    }
    
    .location-details {
        gap: 0.75rem;
    }
    
    .location-icon {
        font-size: 1rem;
    }
    
    /* About section */
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-section .section-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    /* Back to top - smaller on mobile */
    .back-to-top {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
        height: 50vh;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .category-card:hover,
    .menu-item:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    a, button {
        min-height: 44px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --charcoal: #000000;
        --stone: #333333;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
    
    .gallery-item {
        opacity: 1;
        transform: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Keep light theme as primary, but ensure contrast */
    body {
        background-color: var(--cream);
        color: var(--charcoal);
    }
}
