/* ============================================
   Authentic Theme — Traditional / Rustic
   ============================================ */

body {
    font-family: 'Lora', Georgia, serif;
    background-color: #F5F0E8;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(193, 68, 14, 0.03) 0%, transparent 50%);
}

/* Hero */
.authentic-hero {
    position: relative;
}

.authentic-hero h1 {
    font-family: 'Arvo', Georgia, serif;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent, #C1440E), transparent);
    margin: 0 auto;
}

/* Category Chips */
.auth-cats {
    padding: 8px 0;
}

.cat-chip {
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.cat-chip:hover {
    background: var(--color-accent, #C1440E);
    color: #fff;
}

/* Menu Sections */
.auth-section h2 {
    font-family: 'Arvo', serif;
    letter-spacing: 0.02em;
}

/* Menu Items */
.auth-item {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.auth-item:hover {
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
    transform: translateY(-1px);
}

.auth-item img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.auth-item:hover img {
    transform: scale(1.03);
}

.auth-item h3 {
    font-family: 'Lora', serif;
}

.auth-item .price {
    font-family: 'Arvo', serif;
}

/* Footer */
.authentic-footer {
    background: linear-gradient(180deg, #F5F0E8 0%, #EDE5D8 100%);
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.authentic-footer p {
    font-family: 'Lora', serif;
}

/* Warm Animations */
@keyframes warmFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.auth-section {
    animation: warmFade 0.5s ease-out both;
}

.auth-section:nth-child(2) { animation-delay: 0.1s; }
.auth-section:nth-child(3) { animation-delay: 0.15s; }
.auth-section:nth-child(4) { animation-delay: 0.2s; }
