body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--o-dark);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #FFE5DC 0%, #FFF5E6 100%);
    display: flex;
    align-items: center;
    /* padding: 2rem 5%; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍽️';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    right: 0;
    top: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--o-dark);
    line-height: 1.2;
}

.hero-content .hero-tagline {
    font-size: 1.5rem;
    color: var(--o-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-badge span {
    font-size: 1.5rem;
}

/* How It Works */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--o-primary), var(--o-secondary));
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: #ECF0F1;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--o-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.timeline-time {
    color: var(--o-primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

/* Menu Preview */
.menu-preview {
    /* padding: 5rem 5%; */
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5DC 100%);
}

footer {
    background: #1a252f;
    color: white;
    padding: 3rem 0;
}

footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero .o-box {
        padding: var(--space-3) var(--space-3);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-content .o-btn.o-btn-primary {
        width: 100%;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
    }

}