/* ============================================
   Gregory's Original - Storytelling Design
   Scroll-Driven, Modern, Warm
   ============================================ */

:root {
    --accent-color: #cf7018;
    --accent-dark: #9d4e0e;
    --accent-light: #f08d3d;
    --bg-color: #0f0c08; /* Dark Base */
    --bg-white: #1a1510; /* Rich Dark */
    --bg-card: #1f1a14; /* Card Background */
    --text-dark: #f1f1f1; /* Light text for dark backgrounds */
    --text-medium: #d4d4d4; /* Medium light text */
    --text-light: #a0a0a0; /* Lighter text for secondary content */
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 8px 30px rgba(207, 112, 24, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

/* Mobile: Ensure body doesn't interfere with hero positioning */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* Header - Sticky with Transform */
header {
    background: rgba(15, 12, 8, 0.95); /* Dark Base with transparency */
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(15, 12, 8, 0.98); /* Dark Base */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
    height: 80px;
}

.logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 85vw);
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 100px;
    overflow-y: auto;
}

nav.active {
    right: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul li a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

nav ul li a:hover {
    background: var(--bg-color);
    color: var(--accent-color);
    padding-left: 2.5rem;
}

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

    nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding-top: 0;
        overflow: visible;
    }

    nav ul {
        display: flex;
        gap: 2rem;
    }

    nav ul li {
        border-bottom: none;
    }

    nav ul li a {
        padding: 0.5rem 1rem;
        border-bottom: 2px solid transparent;
    }

    nav ul li a:hover {
        border-bottom-color: var(--accent-color);
        padding-left: 1rem;
    }
}

/* Hero Section - Full Screen */
.hero {
    position: relative;
    width: 100%;
    margin-top: 80px;
    padding-top: 0;
    overflow: hidden;
    z-index: 0;
    display: block;
    aspect-ratio: 16 / 9;
    height: auto;
    isolation: isolate;
}

.hero-background {
    width: 120%;
    height: 100%;
    display: block;
    opacity: 0.7;
    filter: brightness(0.6);
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
}

/* Mobile: Fixed height at 70vh */
@media (max-width: 768px) {
    /* Ensure body doesn't have padding that interferes */
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Hero section starts exactly at 80px (below header) - no gap, no overlap */
    .hero {
        aspect-ratio: auto;
        height: calc(100vh - 80px);
        margin-top: 80px !important;
        padding-top: 0 !important;
        position: relative;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 0;
        min-height: 400px;
        /* Ensure hero section itself doesn't overlap header */
        overflow: hidden;
    }
    
    .hero-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0 !important;
        transform: translateX(0) !important;
        position: absolute;
    }
    
    .hero-overlay {
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    /* Hero content positioning - ensure it stays within hero section bounds, never above top */
    .hero-content {
        padding: 2rem 1.5rem;
        padding-bottom: 3rem;
        padding-top: 2rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        position: absolute;
        z-index: 2;
    }
    
    /* Ensure hero content doesn't get cut off on very small mobile screens */
    @media (max-height: 600px) {
        .hero {
            min-height: 350px;
        }
        
        .hero-content {
            top: auto;
            bottom: 2rem;
            transform: translate(-50%, 0);
            padding-top: 1rem;
        }
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    padding-bottom: 4rem;
    max-width: 900px;
    width: 100%;
    animation: heroFadeIn 1s ease-out;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

/* Desktop: Adjust for shorter viewports */
@media (min-width: 769px) and (max-height: 800px) {
    .hero-content {
        top: auto;
        bottom: 10%;
        transform: translate(-50%, 0);
    }
}

@media (min-width: 769px) and (max-height: 600px) {
    .hero-content {
        top: auto;
        bottom: 2rem;
        transform: translate(-50%, 0);
    }
}

@media (min-width: 1024px) {
    .hero-background {
        width: 120%;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        min-width: 100%;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-title-light {
    font-weight: 300;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title-bold {
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(207, 112, 24, 0.5);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.0625rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-accent);
}

.btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(207, 112, 24, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.btn-order {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-order:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(207, 112, 24, 0.4);
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 600px) {
    .btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Story Scroll Section - Horizontal Scroll */
.story-scroll {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-white);
    overflow-x: hidden;
    overflow-y: visible;
}

.story-scroll-container {
    display: flex;
    gap: 4rem;
    padding: 2rem 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.story-scroll-container::-webkit-scrollbar {
    display: none;
}

.story-panel {
    min-width: 90vw;
    max-width: 1200px;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 clamp(2rem, 5vw, 5rem);
    overflow: visible;
}

.story-panel.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: visible;
    border-radius: 20px;
    min-height: 500px;
    padding: 20px;
    margin: -20px;
}

.story-img-primary {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    box-shadow: var(--shadow-lg);
}

.story-img-secondary {
    width: 65%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    bottom: 10px;
    right: -20px;
    z-index: 3;
    transform: rotate(8deg);
    transform-origin: center top;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    box-shadow: var(--shadow-lg);
}

.story-image:hover .story-img-primary {
    transform: scale(1.05);
    filter: brightness(1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(207, 112, 24, 0.6);
}

.story-image:hover .story-img-secondary {
    transform: rotate(12deg) scale(1.03) translateY(-10px);
    filter: brightness(1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(207, 112, 24, 0.6);
    z-index: 3;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 2;
    color: var(--text-medium);
}

.story-quote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
    margin: 2rem 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .story-panel {
        flex-direction: column;
        min-width: 85vw;
    }
    
    .story-panel.reverse {
        flex-direction: column;
    }
    
    .story-img-primary {
        height: 400px;
    }
    
    .story-img-secondary {
        width: 75%;
        height: 300px;
        bottom: -20px;
        right: -20px;
    }
    
    .story-image {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .story-img-primary {
        transform: translateX(-40px) !important;
        width: 95% !important;
    }
    
    .story-image:hover .story-img-primary {
        transform: translateX(-40px) scale(1.05) !important;
    }
    
    .story-img-secondary {
        right: -60px !important;
        left: auto !important;
        width: 80% !important;
    }
    
    .story-image:hover .story-img-secondary {
        transform: rotate(12deg) scale(1.03) translateY(-10px) !important;
    }
}

/* Menu Preview - Split Blocks */
.menu-preview {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-color);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.menu-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
    cursor: pointer;
    display: block;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

a.menu-card {
    text-decoration: none;
    color: inherit;
}

.menu-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-card-image {
    transform: scale(1.1);
}

.menu-card:not(:has(.menu-card-image)) {
    min-height: auto;
}

.menu-card-content {
    padding: 2rem;
}

.menu-card-content h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.menu-card-content p {
    color: var(--text-medium);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
}

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

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

/* Callout Section */
.craving-section {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-white);
    text-align: center;
}

.craving-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.craving-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.craving-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.craving-card:hover::before {
    transform: scaleX(1);
}

.craving-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.craving-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.craving-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.craving-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

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

/* Social Wall */
.social-wall {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-color);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.social-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
}

.social-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.social-quote {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.social-author {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

/* Announcement Banner */
.announcement-banner {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.announcement-banner p {
    color: var(--white);
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 600;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/project-x-optimized/wings.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-color);
    border-radius: 20px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-box {
        padding: 1.5rem 0.75rem;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.stat-number {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

/* Footer */
footer {
    background: var(--bg-color);
    color: var(--text-dark);
    padding: 0;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.footer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 12, 8, 0.3), rgba(15, 12, 8, 0.9));
}

footer .container {
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem) 3rem;
    position: relative;
    z-index: 1;
}

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

.footer-map {
    grid-column: 1 / -1;
}

.footer-buttons {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-brand,
.footer-hours {
    text-align: left;
}

.footer-section p,
.footer-section a {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    display: block;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

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

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

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-item span:last-child,
.contact-item a {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-item a {
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
    transform: none;
}

.footer-order .btn {
    margin-top: 1rem;
}

.footer-map {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(207, 112, 24, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.btn-order-footer {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(207, 112, 24, 0.3);
}

.btn-order-footer:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(207, 112, 24, 0.6);
    background: #d67a1a;
}

.btn-call-footer {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-call-footer:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1877F2;
    border: 2px solid #1877F2;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #0d5bd8;
    border-color: #0d5bd8;
    transform: translateY(-3px) scale(1.1);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

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

@media (min-width: 768px) {
    .footer-image {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-buttons {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
        margin: 1rem auto 0;
    }
}

@media (min-width: 1025px) {
    .footer-wrapper {
        flex-direction: row;
    }
    
    .footer-image {
        width: 40%;
        height: auto;
        min-height: 500px;
    }
    
    footer .container {
        width: 60%;
        padding: clamp(4rem, 8vw, 6rem) clamp(3rem, 6vw, 5rem) 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .footer-buttons {
        max-width: 700px;
    }
}

/* Page Header */
.page-header {
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    background: var(--bg-white);
    margin-top: 80px;
}

/* Menu Hero */
.menu-hero {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    margin-top: 80px;
    background-image: url('images/project-x-optimized/Cajun Chicken Sub Sandwich 1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 12, 8, 0.85) 0%, rgba(15, 12, 8, 0.7) 100%);
    z-index: 1;
}

.menu-hero .container {
    position: relative;
    z-index: 2;
}

.menu-hero .section-header {
    text-align: center;
}

.menu-hero h1 {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-hero p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Menu Category Layout */
.menu-category {
    margin-bottom: 4rem;
    scroll-margin-top: 120px;
}

.menu-category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.menu-category-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.menu-category-header p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.menu-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-category-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.menu-category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

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

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

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

.menu-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

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

.menu-item-header h3 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.menu-item p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text-medium);
}

.menu-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-card-content h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.3;
    color: var(--text-dark);
}

.menu-card-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: var(--text-medium);
}

.menu-content {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: var(--bg-color);
}

.menu-card-content > div {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.menu-card-content h3 {
    line-height: 1.2;
}

@media (min-width: 768px) {
    .menu-category-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .menu-category-image {
        flex: 0 0 300px;
        max-width: 300px;
    }
    
    .menu-category-image img {
        height: 400px;
    }
    
    .menu-items-grid {
        flex: 1;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .menu-hero {
        min-height: 250px;
        padding: clamp(3rem, 6vw, 4rem) 0;
    }
    
    .menu-category-image {
        flex: 0 0 350px;
        max-width: 350px;
    }
    
    .menu-category-image img {
        height: 500px;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Join Team Section */
.join-section {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: var(--bg-white);
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    margin-bottom: 2rem;
}

.join-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

/* Google Reviews Section */
.reviews-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--bg-color);
    overflow: hidden;
}

.reviews-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-reviews 135s linear infinite;
    width: fit-content;
}

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

.review-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    border: 1px solid rgba(207, 112, 24, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 1024px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .reviews-track {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .review-card {
        min-width: 85vw;
        max-width: 85vw;
    }
}

/* Footer Powered By */

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-by img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.powered-by:hover img {
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-bottom p {
        flex: 1;
    }
    
    .powered-by {
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .footer-brand,
    .footer-hours {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Fixed Call Button */
.mobile-call-button {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.mobile-call-button:hover,
.mobile-call-button:active {
    background: var(--accent-dark);
    color: var(--white);
}

.mobile-call-button i {
    margin-right: 0.5rem;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }
    
    /* Add padding to body on mobile to prevent content from being hidden behind fixed button */
    body {
        padding-bottom: 70px;
    }
}
