/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1B3A5F;
    --primary-dark: #142d4a;
    --accent: #6BA3D6;
    --accent-light: #a8cce8;
    --bg: #FFFFFF;
    --text: #1B3A5F;
    --text-light: #5a7a9a;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --shadow: 0 4px 20px rgba(27,58,95,0.1);
    --shadow-lg: 0 8px 30px rgba(27,58,95,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-bottom: 100px;
}

/* Hero Section */
.hero {
    background: var(--primary);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.location {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Info Bar */
.info-bar {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Menu Container */
.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Menu Sections */
.menu-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.menu-section h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.section-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.item-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Menu Grid */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span:first-child {
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}

.price {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--whatsapp);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    background: var(--whatsapp-dark);
    transform: translateX(-50%) scale(1.05);
}

.whatsapp-button:active {
    transform: translateX(-50%) scale(0.98);
}

.whatsapp-button svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.credit {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (min-width: 600px) {
    .hero {
        padding: 4rem 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .menu-container {
        padding: 2rem;
    }
    
    .menu-section {
        padding: 2rem;
    }
    
    .menu-section h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles (for flyer QR codes) */
@media print {
    .whatsapp-button {
        display: none;
    }
    
    .menu-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Animation */
@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.whatsapp-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}
