html {
    scroll-behavior: smooth;
}

/* ==========================================
   1. GLOBAL STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FDFBF7;
    color: #2D2D2D;
    line-height: 1.6;
}

/* ==========================================
   2. NAVBAR
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #D3411A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 2000px;
    margin: 0 auto;
}

.logo {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #FCECE6;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.nav-links .nav-cta {
    background-color: #FFFFFF;
    color: #D3411A;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links .nav-cta:hover {
    background-color: #FCECE6;
    color: #D3411A;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.menu-hero {
    background-color: #D3411A;
    color: #FFFFFF;
    padding: 4rem 5% 5rem 5%;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    font-family: 'Anton', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    color: #FCECE6;
    margin-bottom: 1rem;
}

.menu-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #FCECE6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #1E1E1E;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #D3411A;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: bold;
    font-size: 1rem;
}

.badge-sub {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ==========================================
   4. MENU SECTION
   ========================================== */
.menu-section {
    padding: 4rem 5% 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    font-family: 'Anton', sans-serif;
    font-size: 0.8rem;
    color: #D3411A;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.section-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.warning-note {
    background-color: #FFF3E0;
    color: #D3411A;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-block;
    border: 2px solid #D3411A;
}

/* ==========================================
   5. FOOD GRID
   ========================================== */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.food-card {
    background: #FFFFFF;
    border: 2px solid #EAEAEA;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #D3411A;
}

.food-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    pointer-events: none;
}

.food-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    color: #1E1E1E;
    margin-bottom: 0.3rem;
    pointer-events: none;
}

.food-card .price {
    font-weight: bold;
    color: #D3411A;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    pointer-events: none;
}

/* ==========================================
   6. CARD CONTROLS
   ========================================== */
.card-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.qty-btn {
    background-color: #D3411A;
    color: #FFFFFF;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #B03516;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-count {
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.card-controls.small .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.card-controls.small .qty-count {
    font-size: 0.95rem;
    min-width: 25px;
}

/* ==========================================
   7. SIDES & DRINKS
   ========================================== */
.sides-section,
.drinks-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #EAEAEA;
}

.sides-title,
.drinks-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #D3411A;
}

.sides-grid,
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.side-card,
.drink-card {
    background: #FFFFFF;
    border: 2px solid #EAEAEA;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.side-card:hover,
.drink-card:hover {
    transform: translateY(-3px);
    border-color: #D3411A;
}

.side-name,
.drink-name {
    font-weight: bold;
    font-size: 1rem;
    pointer-events: none;
}

.side-price,
.drink-price {
    color: #D3411A;
    font-weight: bold;
    font-size: 1rem;
    pointer-events: none;
}

.side-card-image,
.drink-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* ==========================================
   8. ORDER STATION
   ========================================== */
.order-station {
    background-color: #F7EAD3;
    padding: 4rem 5%;
    margin-top: 3rem;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.sendviawhatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sendviawhatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
    background: linear-gradient(135deg, #2fdb6d, #15803d);
}

.order-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.order-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.order-instruction {
    color: #555;
    font-size: 0.95rem;
}

.order-example {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ==========================================
   9. FORM
   ========================================== */
#orderForm {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #EAEAEA;
    border-radius: 12px;
    font-size: 1rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D3411A;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.selected-items {
    background: #F9F9F9;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.selected-items ul {
    list-style: none;
    padding: 0.5rem 0;
}

.selected-items ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #EAEAEA;
    font-size: 0.95rem;
}

.total-display {
    font-size: 1.2rem;
    color: #D3411A;
    margin-top: 0.5rem;
}

.whatsapp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    background-color: #224229;
    color: #FFFFFF;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-submit:hover {
    background-color: #162C1B;
    transform: scale(1.02);
}

/* ==========================================
   10. FOOTER
   ========================================== */
.main-footer {
    background-color: #1E1E1E;
    color: #FCECE6;
    padding: 3rem 5% 2rem 5%;
    text-align: center;
}

.footer-brand {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #FCECE6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D3411A;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

/* ==========================================
   11. RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .menu-hero h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .menu-hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .food-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    .sides-grid,
    .drinks-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .order-container {
        padding: 0;
    }

    #orderForm {
        padding: 1.5rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .delivery-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .menu-hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .food-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .food-card {
        padding: 0.8rem;
    }

    .food-card h3 {
        font-size: 0.9rem;
    }

    .food-card img {
        height: 130px;
    }

    .sides-grid,
    .drinks-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .side-card,
    .drink-card {
        padding: 0.8rem;
    }

    .order-header h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-submit {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}

/* ==========================================
   12. DESKTOP OPTIMIZATION (1200px and above)
   ========================================== */
@media (min-width: 1200px) {
    /* Menu Page */
    .food-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .sides-grid,
    .drinks-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .menu-hero h1 {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 800px;
    }
    
    .order-container {
        max-width: 800px;
    }
    
    .food-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .food-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .main-footer {
        padding: 3rem 10% 2rem 10%;
    }
}

/* ==========================================
   13. LARGE DESKTOP (1400px+)
   ========================================== */
@media (min-width: 1400px) {
    .menu-section {
        max-width: 1300px;
    }
    
    .food-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .sides-grid,
    .drinks-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .menu-hero h1 {
        font-size: 5rem;
    }
    
    .hero-content {
        max-width: 1000px;
    }
}

/* ==========================================
   14. EXTRA LARGE DESKTOP (1600px+)
   ========================================== */
@media (min-width: 1600px) {
    .menu-section {
        max-width: 1400px;
    }
    
    .food-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }
    
    .food-card {
        padding: 1.5rem;
    }
    
    .food-card img {
        height: 220px;
    }
    
    .food-card h3 {
        font-size: 1.3rem;
    }
}