:root {
    /* CRI Colors */
    --cri-red: #DA291C;
    --cri-red-dark: #b32015;
    --cri-red-light: #ff4738;
    
    /* Layout Colors */
    --bg-color: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* UI Tokens */
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--cri-red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--cri-red-dark);
}

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

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-primary { color: var(--cri-red); }
.text-right { text-align: right; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--cri-red);
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.3);
}

.btn-primary:hover {
    background-color: var(--cri-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main) !important;
    box-shadow: var(--shadow-sm);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--cri-red);
    color: var(--cri-red) !important;
}

.btn-outline:hover {
    background-color: var(--cri-red);
    color: var(--white) !important;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.header-logo {
    height: 48px;
    width: auto;
}

.logo-text {
    display: inline-block;
}

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

.nav a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav a:hover, .nav a.active {
    color: var(--cri-red);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(218, 41, 28, 0.08) 0%, rgba(255,255,255,0) 50%),
                radial-gradient(circle at bottom left, rgba(218, 41, 28, 0.05) 0%, rgba(255,255,255,0) 40%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 41, 28, 0.1) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--cri-red);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.text-highlight {
    color: var(--cri-red);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(218, 41, 28, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.date-badge {
    display: inline-block;
    background-color: var(--cri-red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 12px;
    transform: translateY(-4px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Grids */
.grid {
    display: grid;
    gap: 32px;
}

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

.grid-sub {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

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

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.full-width {
    grid-column: 1 / -1;
}

.card-highlight {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(218, 41, 28, 0.05));
    border-color: rgba(218, 41, 28, 0.2);
}

.card-featured {
    border-top: 4px solid var(--cri-red);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--white);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.card .subtitle {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Timeline */
.timeline {
    list-style: none;
    position: relative;
    margin: 32px 0;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 2px;
    background-color: rgba(218, 41, 28, 0.2);
}

.timeline li {
    position: relative;
    margin-bottom: 24px;
}

.timeline li:last-child {
    margin-bottom: 0;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--cri-red);
    box-shadow: 0 0 0 4px rgba(218, 41, 28, 0.2);
}

.timeline .time {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--cri-red);
    margin-right: 12px;
    min-width: 50px;
}

.timeline strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.timeline p {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.95rem;
}

/* Specific UI Elements */
.menu-box {
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px dashed rgba(0,0,0,0.1);
}

.menu-box h4 {
    margin-bottom: 16px;
}

.menu-box ul {
    list-style: none;
}

.menu-box li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.vegan-option {
    margin-top: 16px;
    font-weight: 600;
    color: #10b981;
}

.highlight-box {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}

.time-large {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--cri-red);
    line-height: 1;
    margin-bottom: 12px;
}

.action-box {
    background-color: rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
}

.action-box p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.limit-badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 8px;
    font-weight: 500;
}

.info-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 80px 0 40px;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-logo {
    height: 64px;
    width: auto;
    background: var(--white);
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 16px;
}

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

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #e2e8f0;
}

.footer-contact a:hover {
    color: var(--cri-red-light);
}

.weather-box {
    background-color: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #94a3b8;
}

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

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-bg::before {
        right: 50%;
        transform: translate(50%, -50%);
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .full-width .grid-2 {
        text-align: center;
    }
    
    .full-width .text-right {
        text-align: center;
    }
    
    .full-width .card-icon {
        margin: 0 auto 20px;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
