﻿:root {
    --primary-yellow: #FFD500;
    --primary-orange: #FF8C00;
    --primary-red: #D32F2F;
    --dark-bg: #1A1A1A;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --whatsapp-green: #25D366;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: #FFF9E6;
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: var(--dark-bg);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--primary-yellow);
}

.logo-nav img {
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
}

.btn-whatsapp-header {
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.btn-whatsapp-header:hover { transform: scale(1.05); }

.hero {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 0px white;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.nav-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-pills a {
    background: var(--dark-bg);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: background 0.3s;
}

.nav-pills a:hover {
    background: var(--primary-red);
}

.menu-container {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 80px;
}

.category-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.banner-overlay h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.banner-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.section-header-simple h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-red);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.product-card.featured {
    border-color: var(--primary-red);
    background: #FFF0F0;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.product-info p {
    color: #555;
    margin-bottom: 15px;
    min-height: 48px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.prices-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-combo {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-buy {
    background: var(--whatsapp-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-buy:hover {
    background: #1EBE5D;
}

.toppings-info {
    background: var(--dark-bg);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.toppings-info h4 {
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.topping-list {
    line-height: 1.8;
}

footer {
    background: #111;
    color: white;
    padding: 40px 5% 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 80px;
    border-radius: 50%;
}

.socials a, .contact p {
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .category-banner { height: 200px; }
    .banner-overlay h2 { font-size: 2rem; }
}