/*
 * 805StreetFoods - GLASSMORPHISM Design System
 * Premium frosted glass aesthetic with aurora gradients
 */

/* ==================== CUSTOM FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
    /* ==================== 805 STREET FOODS BRAND COLORS ==================== */
    /* Extracted from logo: Hot Pink → Coral → Orange sunset gradient */

    /* Brand Colors - Direct from logo */
    --brand-hot-pink: #ff0080;
    --brand-coral: #ff5a6c;
    --brand-orange: #ff6600;
    --brand-dark: #1a1a1a;

    /* 805 Sunset Background - Matches logo gradient */
    --aurora-bg: #0d0d0d;
    --mesh-gradient:
        radial-gradient(ellipse 150% 100% at 50% 0%, rgba(255, 0, 128, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 120% 80% at 85% 20%, rgba(255, 90, 108, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 100% 80% at 15% 25%, rgba(255, 102, 0, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 130% 100% at 75% 100%, rgba(255, 0, 128, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 110% 90% at 25% 90%, rgba(255, 102, 0, 0.12) 0%, transparent 65%);

    /* Liquid Glass Colors */
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-white-strong: rgba(255, 255, 255, 0.15);
    --glass-white-border: rgba(255, 255, 255, 0.2);
    --glass-white-glow: rgba(255, 255, 255, 0.35);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --glass-specular: rgba(255, 255, 255, 0.5);

    /* 805 Accent Colors - Logo palette */
    --accent-primary: #ff6600;
    --accent-secondary: #ff0080;
    --accent-coral: #ff5a6c;
    --accent-pink: #ff0080;
    --accent-orange: #ff6600;
    --accent-white: #ffffff;

    /* 805 Glow Colors */
    --glow-primary: rgba(255, 102, 0, 0.5);
    --glow-secondary: rgba(255, 0, 128, 0.5);
    --glow-coral: rgba(255, 90, 108, 0.4);
    --glow-pink: rgba(255, 0, 128, 0.4);

    /* Text on Glass */
    --text-glass-primary: rgba(255, 255, 255, 0.95);
    --text-glass-secondary: rgba(255, 255, 255, 0.8);
    --text-glass-muted: rgba(255, 255, 255, 0.6);

    /* ==================== LIQUID GLASS EFFECTS ==================== */

    --blur-xs: blur(8px);
    --blur-sm: blur(12px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
    --blur-xl: blur(40px);

    /* Liquid Glass Shadows - Softer, more refined */
    --glass-shadow:
        0 2px 8px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    --glass-shadow-lg:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --glass-shadow-glow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 12px 48px rgba(102, 126, 234, 0.15);

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

    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Sora', -apple-system, sans-serif;

    /* ==================== SPACING ==================== */

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* ==================== BORDERS ==================== */

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;

    /* ==================== TRANSITIONS ==================== */

    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-glass-primary);
    background: var(--aurora-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Vibrant Mesh Gradient Overlay - Covers entire page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--mesh-gradient);
    z-index: -1;
    pointer-events: none;
}

/* Subtle Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
}

/* ==================== CONTAINER ==================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==================== LIQUID GLASS CARD COMPONENT ==================== */

.glass-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: var(--blur-md) saturate(180%);
    -webkit-backdrop-filter: var(--blur-md) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

/* Top specular highlight - like light hitting glass edge */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent);
    border-radius: 1px;
}

/* Inner glow for depth */
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glass-shadow-glow);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

/* Glass Card Variants */
.glass-card-strong {
    background: var(--glass-white-strong);
}

.glass-card-dark {
    background: var(--glass-dark);
}

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

.navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar-glass .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-inner {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: var(--blur-lg) saturate(180%);
    -webkit-backdrop-filter: var(--blur-lg) saturate(180%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-glass-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-glass-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-glass-primary);
    background: var(--glass-white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--glow-primary);
}

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

.hero-glass {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) var(--space-lg);
    position: relative;
}

/* Floating Glass Orbs */
.hero-glass::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.hero-glass::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-secondary) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-2xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--glow-primary);
    animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 40px var(--glow-primary);
    }
    50% {
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 60px var(--glow-secondary);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: var(--text-glass-secondary);
    margin-bottom: var(--space-xs);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-glass-muted);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== BUTTONS ==================== */

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-glass-primary {
    background: linear-gradient(
        135deg,
        var(--brand-orange) 0%,
        var(--brand-coral) 50%,
        var(--brand-hot-pink) 100%
    );
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 2px 8px rgba(255, 102, 0, 0.4),
        0 8px 24px rgba(255, 0, 128, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.btn-glass-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 4px 20px rgba(255, 102, 0, 0.5),
        0 16px 48px rgba(255, 0, 128, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-glass-secondary {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: var(--blur-sm) saturate(180%);
    -webkit-backdrop-filter: var(--blur-sm) saturate(180%);
    color: var(--text-glass-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glass-secondary:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-glass-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

/* Button Shine Effect */
.btn-glass-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-glass-primary:hover::before {
    left: 100%;
}

/* ==================== CTA BUTTONS GROUP ==================== */

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* ==================== HERO FEATURES ==================== */

.hero-features {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-feature {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: var(--blur-sm) saturate(150%);
    -webkit-backdrop-filter: var(--blur-sm) saturate(150%);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-glass-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.app-note {
    font-size: 0.85rem;
    color: var(--text-glass-muted);
}

/* ==================== FEATURES SECTION ==================== */

.features-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-3xl);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: var(--blur-md) saturate(180%);
    -webkit-backdrop-filter: var(--blur-md) saturate(180%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 805 Sunset gradient accent bar */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-hot-pink), var(--brand-coral), var(--brand-orange));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    display: block;
    color: var(--brand-orange);
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

/* Phosphor duotone secondary color */
.feature-icon [opacity] {
    opacity: 0.4;
}

/* Alternate icon colors for variety */
.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
    color: var(--brand-hot-pink);
    filter: drop-shadow(0 0 20px var(--glow-pink));
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-glass-primary);
}

.feature-card p {
    color: var(--text-glass-secondary);
    line-height: 1.6;
}

/* ==================== EVENTS SECTION ==================== */

.events-section {
    padding: var(--space-4xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-glass-primary);
}

.view-all {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-fast);
}

.view-all:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.event-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-white-border);
    padding: var(--space-xl);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: block;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.event-card:hover {
    transform: translateX(10px);
    border-color: var(--glass-white-glow);
    box-shadow: var(--glass-shadow-glow);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: var(--space-xs);
}

.event-card-date {
    color: var(--text-glass-secondary);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.event-card-venue {
    color: var(--text-glass-primary);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.scheduled {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.status-badge.live {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    }
}

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

.download-cta {
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
}

.download-cta-card {
    background: linear-gradient(
        145deg,
        rgba(255, 0, 128, 0.15) 0%,
        rgba(255, 90, 108, 0.12) 50%,
        rgba(255, 102, 0, 0.1) 100%
    );
    backdrop-filter: var(--blur-lg) saturate(200%);
    -webkit-backdrop-filter: var(--blur-lg) saturate(200%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-3xl);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(255, 0, 128, 0.15),
        0 16px 48px rgba(255, 102, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Specular highlight */
.download-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent);
}

.download-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-glass-primary);
    position: relative;
}

.download-cta p {
    color: var(--text-glass-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    position: relative;
}

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

.vendor-cta-section {
    padding: var(--space-4xl) 0;
}

.vendor-cta-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: var(--blur-lg) saturate(180%);
    -webkit-backdrop-filter: var(--blur-lg) saturate(180%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 16px 48px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.vendor-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.vendor-feature {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: var(--blur-sm) saturate(150%);
    -webkit-backdrop-filter: var(--blur-sm) saturate(150%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.vendor-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
    color: var(--brand-coral);
    filter: drop-shadow(0 0 15px var(--glow-coral));
}

.vendor-feature strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-glass-primary);
}

.vendor-feature span {
    color: var(--text-glass-secondary);
    font-size: 0.9rem;
}

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

.footer-glass {
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
    border-top: 1px solid var(--glass-white-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-glass-primary);
}

.footer-section p {
    color: var(--text-glass-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--text-glass-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--glass-white-border);
    color: var(--text-glass-muted);
}

/* ==================== PAGE HEADER ==================== */

.page-header-glass {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    position: relative;
}

.page-header-glass h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-glass p {
    color: var(--text-glass-secondary);
    font-size: 1.2rem;
}

/* ==================== FILTERS ==================== */

.filters-glass {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: var(--blur-md) saturate(180%);
    -webkit-backdrop-filter: var(--blur-md) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.filters {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    flex: 1;
    min-width: 200px;
    padding: var(--space-md);
    background: var(--glass-white);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-white-border);
    border-radius: var(--radius-md);
    color: var(--text-glass-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.search-input::placeholder {
    color: var(--text-glass-muted);
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

.filter-select option {
    background: #1a1a2e;
    color: white;
}

.filter-btn {
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-white);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--glass-white-border);
    border-radius: var(--radius-md);
    color: var(--text-glass-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* ==================== TRUCK CARDS GRID ==================== */

.trucks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

/* ==================== VENUE CARDS GRID ==================== */

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.venue-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: var(--blur-md) saturate(180%);
    -webkit-backdrop-filter: var(--blur-md) saturate(180%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: block;
    box-shadow: var(--glass-shadow);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.venue-banner {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.venue-card-content {
    padding: var(--space-lg);
}

.venue-logo-container {
    margin-bottom: var(--space-md);
}

.venue-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.venue-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-glass-primary);
}

.venue-address {
    color: var(--text-glass-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.venue-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.amenity-tag {
    background: var(--glass-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-glass-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-tag.more {
    color: var(--accent-coral);
}

.truck-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-white-border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: block;
}

.truck-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glass-shadow-glow);
    border-color: var(--glass-white-glow);
}

.truck-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.truck-card-content {
    padding: var(--space-lg);
}

.truck-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-glass-primary);
}

.truck-cuisine {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.dietary-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.dietary-tag {
    background: var(--glass-white);
    color: var(--accent-pink);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

/* ==================== LOADING STATE ==================== */

.loading {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--text-glass-muted);
}

.loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-white-border);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: var(--space-md);
}

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

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

@media (max-width: 768px) {
    .navbar-inner {
        padding: var(--space-xs) var(--space-md);
    }

    .nav-links {
        display: none;
    }

    .hero-glass {
        padding: calc(var(--space-4xl) + 40px) var(--space-md);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .filters {
        flex-direction: column;
    }

    .search-input,
    .filter-select {
        width: 100%;
    }

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

/* ==================== REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
