:root {
    /* Color Palette - Vibrant Red & Yellow */
    --primary-red: #E63946;
    --primary-red-hover: #D62828;
    --primary-yellow: #FFB703;
    --primary-yellow-light: #FFD166;
    --dark-text: #1D3557;
    --light-text: #F1FAEE;
    --bg-color: #FFFDF7;
    --bg-card: #FFFFFF;
    --gradient-red: linear-gradient(135deg, #E63946 0%, #D62828 100%);
    --gradient-yellow: linear-gradient(135deg, #FFB703 0%, #FB8500 100%);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing & Utilities */
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 30px rgba(230, 57, 70, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navbar */
.navbar {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary-yellow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-yellow);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(255,253,247,0.85), rgba(255,253,247,0.7)), url('https://images.unsplash.com/photo-1606680000844-0466be9fcd0f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero .highlight {
    font-family: var(--font-accent);
    color: var(--primary-red);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4A5568;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--light-text);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

/* Menu Section */
.menu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--gradient-yellow);
    margin: 0 auto;
    border-radius: 2px;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 2px dashed #E2E8F0;
    padding-bottom: 0.5rem;
}

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

/* Menu Cards */
.menu-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 200px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.menu-card:hover .card-image {
    transform: scale(1.05);
}

/* Placeholder Images */
.combo-1 { background-image: url('https://images.unsplash.com/photo-1598514982205-f36b96d1e8d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }
.combo-2 { background-image: url('https://images.unsplash.com/photo-1626645738196-c2a7c87a8f58?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }
.pollo-1 { background-image: url('https://images.unsplash.com/photo-1588168333986-5078d3ae3976?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }
.pollo-2 { background-image: url('https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }

.card-content {
    padding: 1.5rem;
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-red);
    background: #FFF1F2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.card-content p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.order-btn {
    width: 100%;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.order-btn:hover {
    background: var(--primary-red);
    color: var(--light-text);
}

.order-btn i {
    transition: transform 0.3s;
}

.order-btn:hover i {
    transform: translateX(5px);
}

/* Simple Menu Items (Sides) */
.menu-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-yellow);
}

.menu-item-simple:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-red);
}

.simple-info h4 {
    color: var(--dark-text);
    margin-bottom: 0.2rem;
}

.simple-info p {
    font-size: 0.85rem;
    color: #718096;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: #A0AEC0;
}

.footer-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #CBD5E0;
}

.footer-info i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
