/* ============================================
   KEBAB KLUBBEN - PREMIUM DARK LUXURY DESIGN
   ============================================ */

/* Self-hosted fonts (GDPR: ingen request til Googles servere) */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/bebas-neue-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/bebas-neue-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* CSS Variables */
:root {
    /* Colors */
    --black: #050505;
    --graphite: #111111;
    --orange: #F4A142;
    --white: #F7F4EF;
    --green: #35B75A;
    --wolt-blue: #00C2E8;
    --uber-green: #06C167;
    --smiley-green: #24B26B;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max: 1200px;
    
    /* Effects */
    --glow-orange: 0 0 20px rgba(244, 161, 66, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: rgba(247, 244, 239, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 20px auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: var(--glow-orange);
}

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

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

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

.btn-wolt:hover {
    background: var(--wolt-blue);
    border-color: var(--wolt-blue);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 194, 232, 0.4);
}

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

.btn-uber:hover {
    background: var(--uber-green);
    border-color: var(--uber-green);
    color: var(--black);
    box-shadow: 0 0 20px rgba(6, 193, 103, 0.4);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 161, 66, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
}

.brand-est {
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(244, 161, 66, 0.05), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 161, 66, 0.03), transparent 50%);
    z-index: 0;
}

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

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo-img {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(244, 161, 66, 0.3));
    animation: pulse 3s infinite;
}

.logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-orange);
    animation: pulse 3s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--orange);
}

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

.hero-est {
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(244, 161, 66, 0.2);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(247, 244, 239, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-info {
    margin-bottom: 40px;
}

.hero-address,
.hero-phone {
    font-size: 16px;
    margin: 8px 0;
    color: rgba(247, 244, 239, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.info-icon {
    color: var(--orange);
    flex-shrink: 0;
}

.hero-phone a:hover {
    color: var(--orange);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 140px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
}

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

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--graphite);
}

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

.about-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(247, 244, 239, 0.8);
}

.about-text .btn {
    margin-top: 20px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 2px solid var(--orange);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(244, 161, 66, 0.2);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black), var(--graphite));
    border: 2px solid var(--orange);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.placeholder-icon {
    font-size: 120px;
    opacity: 0.3;
}

/* Popular Section - REMOVED */

/* Menu Section */
.menu {
    padding: var(--section-padding) 0;
    background: var(--graphite);
}

.menu-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    overflow-x: auto;
    padding: 10px 0;
}

.menu-filter {
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(244, 161, 66, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.menu-filter:hover,
.menu-filter.active {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
    box-shadow: var(--glow-orange);
}

.menu-category {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

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

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

.menu-category-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.menu-items {
    display: grid;
    gap: 20px;
}

.menu-item {
    background: var(--black);
    border: 1px solid rgba(244, 161, 66, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(244, 161, 66, 0.1);
}

.menu-item-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.menu-item-description {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.6);
    line-height: 1.5;
}

.menu-item-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.menu-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

.menu-price-label {
    font-size: 12px;
    color: rgba(247, 244, 239, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Section */
.events {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.events-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.events-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.event-feature {
    background: var(--graphite);
    border: 1px solid rgba(244, 161, 66, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.event-feature:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(244, 161, 66, 0.15);
}

.event-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
    border-radius: 50%;
    color: var(--orange);
}

.event-feature h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.events-outro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.events-outro p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 16px;
}

.events-outro strong {
    color: var(--orange);
    font-weight: 600;
}

.events-tagline {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--orange);
    letter-spacing: 1px;
    margin-top: 30px !important;
}

/* Order Section */
.order {
    padding: var(--section-padding) 0;
    background: var(--graphite);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.order-card {
    background: var(--graphite);
    border: 2px solid rgba(244, 161, 66, 0.2);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.order-card h3 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.order-card p {
    font-size: 16px;
    color: rgba(247, 244, 239, 0.7);
    margin-bottom: 24px;
}

.order-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
}

/* Wolt Card */
.wolt-card {
    border-color: var(--wolt-blue);
}

.wolt-card h3 {
    color: var(--wolt-blue);
}

.wolt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 194, 232, 0.3);
    background: var(--black);
    border-color: var(--wolt-blue);
}

.wolt-card .order-btn {
    border-color: var(--wolt-blue);
    color: var(--wolt-blue);
}

.wolt-card:hover .order-btn {
    background: var(--wolt-blue);
    color: var(--black);
}

/* Uber Card */
.uber-card {
    border-color: var(--uber-green);
}

.uber-card h3 {
    color: var(--uber-green);
}

.uber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(6, 193, 103, 0.3);
    background: var(--black);
    border-color: var(--uber-green);
}

.uber-card .order-btn {
    border-color: var(--uber-green);
    color: var(--uber-green);
}

.uber-card:hover .order-btn {
    background: var(--uber-green);
    color: var(--black);
}

/* Hours Section */
.hours {
    padding: var(--section-padding) 0;
    background: var(--graphite);
}

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

.hours-card {
    background: var(--black);
    border: 2px solid var(--orange);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.hours-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.hours-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 161, 66, 0.1);
}

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

.hours-time {
    font-weight: 700;
    color: var(--orange);
}

/* Smiley Section */
.smiley {
    padding: 60px 0;
    background: var(--black);
}

.smiley-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--graphite);
    border: 2px solid var(--smiley-green);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.smiley-card:hover {
    box-shadow: 0 0 20px rgba(36, 178, 107, 0.3);
}

.smiley-image {
    flex-shrink: 0;
}

.smiley-svg {
    width: 120px;
    height: 120px;
    transition: var(--transition);
}

.smiley-card:hover .smiley-svg {
    transform: scale(1.05);
}

.smiley-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--smiley-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.smiley-date,
.smiley-info {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.7);
    margin-bottom: 8px;
}

.smiley-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smiley-link:hover {
    text-decoration: underline;
}

/* Privacy Section */
.privacy {
    padding: var(--section-padding) 0;
    background: var(--black);
}

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

.privacy-section {
    background: var(--graphite);
    border: 1px solid rgba(244, 161, 66, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.privacy-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--orange);
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--white);
}

.privacy-updated {
    text-align: center;
    color: rgba(247, 244, 239, 0.5);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--graphite);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--orange);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(247, 244, 239, 0.8);
}

.contact-item a:hover {
    color: var(--orange);
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-map iframe {
    border-radius: var(--border-radius);
    width: 100%;
    height: 400px;
}

.map-consent {
    border-radius: var(--border-radius);
    width: 100%;
    height: 400px;
    background: var(--graphite);
    border: 1px solid rgba(244, 161, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
}

.map-consent-content {
    max-width: 480px;
    text-align: center;
}

.map-consent-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    margin: 16px 0 12px;
    color: var(--white);
}

.map-consent-content p {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.75);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-consent-content p a {
    color: var(--orange);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(244, 161, 66, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-est {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(247, 244, 239, 0.6);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-col li {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.7);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(247, 244, 239, 0.5);
}

/* Mobile Menu Sticky */
.mobile-menu-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--orange);
    padding: 12px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.mobile-menu-item:hover {
    color: var(--orange);
}

.mobile-menu-item svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-logo-img {
        width: 200px;
        height: 200px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 100px;
    }

    .hero-address,
    .hero-phone {
        align-items: flex-start;
    }

    .hero-address .info-icon,
    .hero-phone .info-icon {
        margin-top: 5px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-menu-sticky {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .popular-grid,
    .order-grid,
    .hours-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .menu-filters {
        justify-content: flex-start;
    }

    .smiley-card {
        flex-direction: column;
        text-align: center;
    }

    .event-feature {
        padding: 24px 20px;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Privacy Page (Separate Page) */
.privacy-page {
    padding: 120px 0 80px;
    background: var(--black);
    min-height: 100vh;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.privacy-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 24px;
}

.privacy-contact {
    max-width: 800px;
    margin: 40px auto;
    background: var(--graphite);
    border: 2px solid rgba(244, 161, 66, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
}

.privacy-contact h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.privacy-contact p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(247, 244, 239, 0.8);
    margin-bottom: 8px;
}

.privacy-contact strong {
    color: var(--white);
    font-weight: 600;
}

.privacy-contact a {
    color: var(--orange);
    text-decoration: none;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

.privacy-updated {
    text-align: center;
    margin: 60px 0 40px;
}

.privacy-updated p {
    font-size: 14px;
    color: rgba(247, 244, 239, 0.5);
    font-style: italic;
}

.privacy-back {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section Styles */
.faq {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--graphite);
    border: 1px solid rgba(244, 161, 66, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(244, 161, 66, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question span {
    font-family: var(--font-body);
}

.faq-icon {
    color: var(--orange);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon svg {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(247, 244, 239, 0.8);
}

.faq-answer-content strong {
    color: var(--orange);
    font-weight: 600;
}

.faq-answer-content a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

/* FAQ Active State */
.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(244, 161, 66, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq {
        padding: var(--section-padding-mobile) 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* Smooth Scrolling Override for Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
