/* ===================================
   FLAME KINGS - Design System
   Based on CHOMPO Reference Design Philosophy
   ===================================*/

/* CSS Custom Properties */
:root {
    /* Colors */
    --flame-red: #E31E24;
    --deep-black: #000000;
    --cream: #F5EBD9;
    --white: #FFFFFF;
    --dark-red: #B71C1C;

    /* Typography */
    --font-display: 'Anton', 'Bebas Neue', sans-serif;
    --font-headline: 'Bebas Neue', sans-serif;
    --font-body: 'Rubik', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
    --spacing-xxl: 128px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE STYLES
   ===================================*/

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-black);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

/* ===================================
   TYPOGRAPHY
   ===================================*/

.mega-headline {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
}

.section-title-black {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--deep-black);
}

.section-headline {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: 0.02em;
}

.story-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--flame-red);
    letter-spacing: -0.02em;
}

/* ===================================
   NAVIGATION
   ===================================*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--deep-black);
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--flame-red);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--flame-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flame-red);
    transition: width var(--transition-base);
}

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

.nav-cta {
    background: var(--flame-red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

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

.nav-cta:hover {
    background: var(--dark-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   ===================================*/

.hero-red {
    background: var(--flame-red);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl);
    margin-top: 60px;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: var(--deep-black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.mega-headline {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image-container {
    position: relative;
    margin: var(--spacing-lg) auto;
    max-width: 500px;
    animation: fadeIn 1s ease 0.6s both;
}

.hero-burger-cutout {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.cta-primary,
.cta-secondary {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(14px, 1.5vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 18px 40px;
    border-radius: 50px;
    margin: var(--spacing-sm);
    transition: all var(--transition-base);
    display: inline-block;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-primary {
    background: var(--deep-black);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    background: var(--white);
    color: var(--flame-red);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--cream);
    border: 3px solid var(--cream);
}

.cta-secondary:hover {
    background: var(--cream);
    color: var(--flame-red);
    transform: translateY(-4px) scale(1.05);
}

/* Blob SVG */
.blob-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.blob-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

/* ===================================
   TAGLINE SECTION
   ===================================*/

.tagline-section {
    background: var(--cream);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xxl);
    text-align: center;
    position: relative;
}

.tagline-badge-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.tagline-badge {
    background: var(--flame-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    animation: badgePulse 2s ease-in-out infinite;
}

.tagline-badge:nth-child(1) { animation-delay: 0s; }
.tagline-badge:nth-child(2) { animation-delay: 0.3s; }
.tagline-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tagline-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin: var(--spacing-xl) 0;
}

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

.tagline-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--flame-red);
    line-height: 1;
}

.tagline-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

.tagline-separator {
    font-size: 32px;
    color: var(--flame-red);
    font-weight: 900;
}

.word-burst-container {
    max-width: 400px;
    margin: var(--spacing-xl) auto;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.word-burst {
    width: 100%;
    height: auto;
    animation: fadeIn 1s ease both;
    display: block;
}

.burst-text {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    fill: var(--deep-black);
}

.outer-text {
    transform-origin: center;
    animation: rotateClockwise 30s linear infinite;
}

.outer-text .burst-text {
    font-size: 13px;
    fill: var(--deep-black);
}

.middle-text {
    transform-origin: center;
    animation: rotateCounterClockwise 25s linear infinite;
}

.middle-text .burst-text {
    font-size: 12px;
    fill: var(--flame-red);
}

.inner-text {
    transform-origin: center;
    animation: rotateClockwise 20s linear infinite;
}

.inner-text .burst-text {
    font-size: 16px;
    font-weight: 900;
    fill: var(--deep-black);
}

@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.burst-lines {
    animation: pulseBurst 2s ease-in-out infinite;
}

@keyframes pulseBurst {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        transform-origin: center;
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        transform-origin: center;
    }
}

.tagline-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
    line-height: 1.6;
}

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

.rotating-text {
    margin-bottom: var(--spacing-md);
    height: 80px;
    position: relative;
    overflow: visible;
}

.rotate-word {
    position: absolute;
    width: 100%;
    font-family: var(--font-headline);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: var(--flame-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: rotateWords 9s infinite;
}

.rotate-word:nth-child(2) {
    animation-delay: 3s;
}

.rotate-word:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotateWords {
    0%, 33% { opacity: 0; transform: translateY(30px); }
    38%, 62% { opacity: 1; transform: translateY(0); }
    67%, 100% { opacity: 0; transform: translateY(-30px); }
}

/* ===================================
   MENU SHOWCASE SECTION
   ===================================*/

.menu-showcase {
    background: var(--cream);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xxl);
}

.menu-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.menu-badge,
.item-badge,
.story-badge,
.cta-badge {
    display: inline-block;
    background: var(--flame-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-black);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    letter-spacing: 0.02em;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 280px;
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--dark-red) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    font-size: 10px;
    padding: 6px 16px;
}

.item-badge.spicy {
    background: #FF6B00;
}

.item-badge.new {
    background: #00C853;
}

.item-badge.veggie {
    background: #2E7D32;
}

.menu-item-content {
    padding: var(--spacing-md);
}

.menu-item-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

.menu-item-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: var(--spacing-md);
}


.cta-primary.large {
    padding: 24px 60px;
    font-size: 20px;
}

/* ===================================
   STORY SECTION
   ===================================*/

.story-section {
    background: var(--deep-black);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.circular-text-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.circular-text {
    width: 100%;
    height: auto;
    animation: rotate 20s linear infinite;
}

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

.circular-text-path {
    fill: var(--flame-red);
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.circular-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--flame-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-icon {
    width: 60px;
    height: 60px;
    color: var(--white);
}

.story-content {
    color: var(--cream);
}

.story-text {
    margin: var(--spacing-md) 0;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-text strong {
    color: var(--flame-red);
    font-weight: 900;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(227, 30, 36, 0.1);
    border-radius: 12px;
    border: 2px solid var(--flame-red);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--flame-red);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pattern-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, var(--flame-red) 0px, var(--flame-red) 10px, transparent 10px, transparent 20px);
    pointer-events: none;
}

/* ===================================
   CTA SECTION
   ===================================*/

.cta-section {
    background: var(--cream);
    padding: var(--spacing-xxl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-black);
    letter-spacing: 0.05em;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.cta-buttons {
    margin-bottom: var(--spacing-xl);
}

.cta-primary.massive,
.cta-secondary.massive {
    padding: 24px 48px;
    font-size: 18px;
    margin: var(--spacing-sm);
}

.cta-secondary.massive {
    background: transparent;
    color: var(--deep-black);
    border: 3px solid var(--deep-black);
}

.cta-secondary.massive:hover {
    background: var(--deep-black);
    color: var(--cream);
}

.location-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin: var(--spacing-xl) 0;
}

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

.info-label {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--flame-red);
    margin-bottom: var(--spacing-xs);
}

.info-value {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-black);
}

.floating-burger {
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="65" font-size="80" text-anchor="middle">🍔</text></svg>') center / contain no-repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

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

/* ===================================
   FOOTER
   ===================================*/

.footer {
    background: var(--deep-black);
    color: var(--cream);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--flame-red);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.footer-address {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-social a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
    opacity: 0.8;
}

.footer-social a:hover {
    color: var(--flame-red);
    opacity: 1;
}

.footer-copyright {
    font-size: 12px;
    color: var(--cream);
    opacity: 0.5;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(227, 30, 36, 0.2);
}

/* ===================================
   ANIMATIONS
   ===================================*/

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@media (max-width: 1200px) {
    :root {
        --spacing-xl: 80px;
        --spacing-xxl: 100px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .circular-text-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 48px;
        --spacing-xl: 64px;
        --spacing-xxl: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--deep-black);
        flex-direction: column;
        justify-content: center;
        transition: left var(--transition-base);
        padding: var(--spacing-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 24px;
    }

    .hamburger {
        display: flex;
    }

    .hero-red {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-image-container {
        height: 200px;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        width: 100%;
        margin: var(--spacing-sm) 0;
    }

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

    .story-stats {
        grid-template-columns: 1fr;
    }

    .location-info {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .cta-primary.massive,
    .cta-secondary.massive {
        width: 100%;
        margin: var(--spacing-sm) 0;
    }
}

@media (max-width: 600px) {
    .word-burst-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mega-headline {
        font-size: 60px;
    }

    .section-title-black {
        font-size: 40px;
    }

    .menu-item-image {
        height: 200px;
    }

    .stat-number {
        font-size: 36px;
    }

    .word-burst-container {
        max-width: 280px;
        margin: var(--spacing-lg) auto;
    }
}

/* ===================================
   UTILITY CLASSES
   ===================================*/

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

.text-red {
    color: var(--flame-red);
}

.bg-black {
    background: var(--deep-black);
}

.bg-cream {
    background: var(--cream);
}

.bg-red {
    background: var(--flame-red);
}

/* ===================================
   HERO BURGER ANIMATION
   ===================================*/

.hero-burger-animation {
    position: relative;
    width: 250px;
    height: 250px;
    margin: var(--spacing-lg) auto;
    animation: fadeIn 1s ease 0.6s both;
    perspective: 1000px;
}

.burger-icon {
    font-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: burgerFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.1s ease-out;
}

.flame-icon {
    font-size: 40px;
    position: absolute;
    animation: flameFlicker 1.5s ease-in-out infinite;
}

.flame-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.flame-2 {
    top: 15%;
    right: 20%;
    animation-delay: 0.5s;
}

.flame-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes burgerFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes flameFlicker {
    0%, 100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.2);
    }
}

/* ===================================
   WHY US SECTION
   ===================================*/

.why-us-section {
    background: var(--deep-black);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-badge {
    display: inline-block;
    background: var(--flame-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.why-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: rgba(227, 30, 36, 0.1);
    border: 3px solid var(--flame-red);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(227, 30, 36, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    animation: shimmer 1.5s infinite;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cream);
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-icon {
    font-size: 80px;
    margin-bottom: var(--spacing-md);
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }

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

.feature-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--flame-red);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.9;
}

/* ===================================
   TESTIMONIALS SECTION
   ===================================*/

.testimonials-section {
    background: var(--cream);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-badge {
    display: inline-block;
    background: var(--flame-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    border: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--flame-red);
}

.testimonial-card.featured {
    background: var(--flame-red);
    border-color: var(--flame-red);
}

.testimonial-card.featured .testimonial-text {
    color: var(--white);
}

.testimonial-card.featured .quote-icon {
    color: var(--white);
    opacity: 0.3;
}

.testimonial-card.featured .author-name {
    color: var(--cream);
}

.testimonial-card.featured .author-rating {
    color: var(--cream);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.5;
    color: var(--flame-red);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--deep-black);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.author-name {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: 0.05em;
}

.author-rating {
    font-size: 18px;
    color: #FFD700;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.stat-badge {
    background: var(--flame-red);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-big {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}

.stat-small {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-top: var(--spacing-xs);
}

/* ===================================
   INSTAGRAM SECTION
   ===================================*/

.instagram-section {
    background: var(--cream);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-xxl);
    text-align: center;
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-header {
    margin-bottom: var(--spacing-xl);
}

.instagram-badge {
    display: inline-block;
    background: var(--flame-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.section-headline-black {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-sm);
}

.instagram-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-black);
    letter-spacing: 0.05em;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--dark-red) 100%);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.instagram-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 30, 36, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.overlay-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.overlay-text {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

/* Instagram item background images */
.item-1 { background-image: url('../images/burger-1.jpg'); }
.item-2 { background-image: url('../images/burger-2.jpg'); }
.item-3 { background-image: url('../images/burger-3.jpg'); }
.item-4 { background-image: url('../images/burger-4.jpg'); }
.item-5 { background-image: url('../images/burger-1.jpg'); filter: hue-rotate(30deg); }
.item-6 { background-image: url('../images/burger-2.jpg'); filter: hue-rotate(60deg); }

/* ===================================
   RESTAURANT ILLUSTRATION & PATTERNS
   ===================================*/

.restaurant-illustration {
    max-width: 600px;
    margin: var(--spacing-xl) auto var(--spacing-lg);
    animation: fadeInUp 0.8s ease both;
    padding: var(--spacing-md);
}

.restaurant-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.food-pattern {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    opacity: 0.1;
    pointer-events: none;
}

.pattern-left {
    left: 5%;
    top: 20%;
    animation: float 6s ease-in-out infinite;
}

.pattern-right {
    right: 5%;
    bottom: 20%;
    animation: float 6s ease-in-out infinite 3s;
}

.food-icon {
    font-size: 80px;
    animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===================================
   SCROLL INDICATOR
   ===================================*/

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease both 1s;
    z-index: 10;
}

.scroll-text {
    font-family: var(--font-headline);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 24px;
    color: var(--white);
    animation: bounce 2s ease-in-out infinite;
}

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

/* ===================================
   SCROLL TO TOP BUTTON
   ===================================*/

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--flame-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

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

.scroll-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.scroll-flame {
    font-size: 32px;
    animation: flamePulse 1.5s ease-in-out infinite;
}

@keyframes flamePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ===================================
   MENU DECORATIONS
   ===================================*/

.menu-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.menu-float {
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    animation: menuFloat 8s ease-in-out infinite;
}

.menu-float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.menu-float-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.menu-float-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

.menu-float-4 {
    bottom: 25%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes menuFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* ===================================
   FEATURED MENU ITEM
   ===================================*/

.menu-item.featured-item {
    border: 3px solid var(--flame-red);
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.3);
}

.corner-ribbon {
    position: absolute;
    top: 15px;
    left: -5px;
    background: var(--flame-red);
    color: var(--white);
    font-family: var(--font-headline);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: var(--shadow-md);
    animation: ribbonPulse 2s ease-in-out infinite;
}

.corner-ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    border-left: 8px solid var(--dark-red);
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes ribbonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.arrow-pointer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 36px;
    color: var(--flame-red);
    animation: pointRight 1.5s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pointRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ===================================
   NEWSLETTER SECTION
   ===================================*/

.newsletter-section {
    background: linear-gradient(135deg, var(--deep-black) 0%, #1a1a1a 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
    margin-top: var(--spacing-xl);
    text-align: center;
    border: 2px solid var(--flame-red);
}

.newsletter-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    outline: none;
    transition: all var(--transition-base);
}

.newsletter-input:focus {
    border-color: var(--flame-red);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
}

.newsletter-input::placeholder {
    color: #999;
    letter-spacing: 1px;
}

.newsletter-btn {
    padding: 18px 40px;
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--flame-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

/* ===================================
   ENHANCED NAVIGATION
   ===================================*/

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-menu a.active {
    color: var(--flame-red);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--flame-red);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* ===================================
   WHY US SECTION PATTERNS
   ===================================*/

.why-us-section {
    position: relative;
}

.why-us-section::before {
    content: '🍔';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 120px;
    opacity: 0.03;
    transform: rotate(-15deg);
    pointer-events: none;
}

.why-us-section::after {
    content: '🍔';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 120px;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

/* ===================================
   ENHANCED ANIMATIONS
   ===================================*/

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-card:hover {
    transform: translateY(-15px) rotateY(5deg);
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===================================
   RESPONSIVE - NEW SECTIONS
   ===================================*/

@media (max-width: 768px) {
    .hero-burger-animation {
        width: 200px;
        height: 200px;
    }

    .burger-icon {
        font-size: 100px;
    }

    .flame-icon {
        font-size: 30px;
    }

    .tagline-badge-container {
        flex-direction: column;
        align-items: center;
    }

    .tagline-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .tagline-separator {
        display: none;
    }

    .tagline-number {
        font-size: 42px;
    }

    .word-burst-container {
        max-width: 320px;
        padding: 0 var(--spacing-md);
    }

    .word-burst {
        max-width: 100%;
        height: auto;
    }

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

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

    .testimonial-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-headline {
        font-size: 48px;
    }

    .restaurant-illustration {
        max-width: 100%;
    }

    .food-pattern {
        opacity: 0.05;
    }

    .food-icon {
        font-size: 50px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .scroll-arrow {
        font-size: 20px;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-flame {
        font-size: 24px;
    }

    .menu-float {
        font-size: 40px;
    }

    .corner-ribbon {
        font-size: 11px;
        padding: 6px 15px;
    }

    .newsletter-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        padding: 16px 20px;
        font-size: 14px;
    }

    .newsletter-btn {
        padding: 16px 30px;
        font-size: 14px;
    }

    .why-us-section::before,
    .why-us-section::after {
        font-size: 80px;
    }
}
