/* =============================================
   WING IT ON WHEELS - Main Stylesheet
   Theme: Black background, Red & White accents
   ============================================= */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-darker: #111111;
    --color-red: #e31837;
    --color-red-dark: #b81430;
    --color-red-light: #ff2d4d;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-light-gray: #cccccc;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(227, 24, 55, 0.2);
    --shadow-hover: 0 15px 50px rgba(227, 24, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--color-red);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-red-light), var(--color-red));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.4rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(227, 24, 55, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--color-red);
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-red-light);
    color: var(--color-white);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--color-white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    top: 10px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-darker) 50%, var(--color-dark) 100%);
    padding: 100px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(227, 24, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-light-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    transform: rotate(45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
   BUSY / LINE SECTION
   ============================================= */
.busy-section {
    padding: 100px 0;
    background: var(--color-darker);
}

.busy-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--color-red);
}

.busy-image {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.busy-image:hover {
    transform: scale(1.02);
}

/* =============================================
   MENU SECTION
   ============================================= */
.menu-section {
    padding: 100px 0;
    background: var(--color-black);
}

.menu-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--color-red);
    background: var(--color-dark);
}

.menu-image {
    width: 100%;
    height: auto;
}

/* Desktop/Mobile Menu Toggle */
.desktop-menu {
    display: block;
}

.mobile-menu {
    display: none;
}

/* =============================================
   FOOD SHOWCASE
   ============================================= */
.food-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 100%);
}

.food-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.food-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--color-red);
}

.food-image {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.food-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.food-text p {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 25px;
}

.food-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.food-features li {
    font-size: 1.1rem;
    padding: 10px 0;
}

/* =============================================
   TRAILER SECTION
   ============================================= */
.trailer-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.trailer-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--color-red);
    max-width: 900px;
    margin: 0 auto;
}

.trailer-image {
    width: 100%;
    height: auto;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 100px 0;
    background: var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--color-red);
    position: sticky;
    top: 120px;
}

.about-image {
    width: 100%;
    height: auto;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-red);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-white);
}

.about-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-top: 30px;
}

/* =============================================
   STORY SECTION
   ============================================= */
.story-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Story Teaser */
.story-teaser {
    max-width: 900px;
    margin: 0 auto;
}

.story-teaser-content {
    background: var(--color-dark);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(227, 24, 55, 0.3);
}

.story-lead {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 35px;
    line-height: 1.7;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.story-highlight-item {
    background: rgba(227, 24, 55, 0.1);
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(227, 24, 55, 0.3);
    transition: var(--transition);
}

.story-highlight-item:hover {
    border-color: var(--color-red);
    background: rgba(227, 24, 55, 0.15);
}

.highlight-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    font-weight: 600;
}

.story-excerpt {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   AWARDS SECTION
   ============================================= */
.awards-section {
    padding: 100px 0;
    background: var(--color-dark);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.award-card {
    background: var(--color-darker);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--color-red);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.award-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.award-card h3 {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 10px;
}

.award-card p {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.awards-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 50px;
    color: var(--color-white);
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.events-section {
    padding: 100px 0;
    background: var(--color-black);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--color-dark);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(227, 24, 55, 0.3);
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.event-card p {
    color: var(--color-gray);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
}

/* Centered Contact Layout */
.contact-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-email-card {
    background: var(--color-dark);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid var(--color-red);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-email-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-link {
    font-size: 1.5rem;
    color: var(--color-red);
    font-weight: 600;
}

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

.contact-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.service-item {
    background: var(--color-dark);
    padding: 20px 15px;
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--color-light-gray);
    border: 1px solid rgba(227, 24, 55, 0.3);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--color-red);
    color: var(--color-white);
}

.contact-cta-centered {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    padding: 80px 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-cta-centered h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-cta-centered p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-centered .btn-primary {
    background: var(--color-white);
    color: var(--color-red);
}

.contact-cta-centered .btn-primary:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--color-darker);
    padding: 60px 0 30px;
    border-top: 3px solid var(--color-red);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-light-gray);
}

.footer-links a:hover {
    color: var(--color-red);
}

.footer-tagline {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-credit {
    margin-top: 15px;
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--color-red);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
}

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

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .food-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
        position: static;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 350px;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Show mobile menu, hide desktop menu */
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .food-features {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .award-image {
        width: 120px;
        height: 120px;
    }

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

    .contact-services-grid {
        grid-template-columns: 1fr;
    }

    .contact-email-card {
        padding: 35px 25px;
    }

    .contact-cta-centered {
        padding: 35px 25px;
    }

    .contact-cta-centered h3 {
        font-size: 2rem;
    }

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

    .story-teaser-content {
        padding: 35px 25px;
    }

    .story-lead {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .timeline-content {
        padding: 20px;
    }

    .contact-card,
    .contact-services {
        padding: 25px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Fire glow effect for special elements */
.fire-glow {
    text-shadow: 
        0 0 10px rgba(227, 24, 55, 0.5),
        0 0 20px rgba(227, 24, 55, 0.3),
        0 0 30px rgba(227, 24, 55, 0.2);
}
