/* Configuración de Fuentes y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f7f2; /* Color crema suave tipo papel */
    color: #2d2d2d;
    line-height: 1.6;
}

/* Barra de Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #065535; /* Verde bandera */
    letter-spacing: -1px;
}

.logo span {
    color: #ce1126; /* Rojo mexicano */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ce1126;
}

/* Sección de Título */
.content-section {
    padding: 4rem 10%;
    text-align: center;
}

.content-section h1 {
    font-size: 3rem;
    color: #065535;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

/* Línea decorativa debajo del título */
.content-section h1::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #ce1126;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Contenedor del Menú (Grid) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Tarjetas de Platillos */
.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    border-bottom: 5px solid #065535; /* Detalle verde abajo */
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Estilo del Precio */
.price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ce1126;
    background: #fff5f5;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    align-self: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 2.5rem;
    margin-top: 5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Ajustes para Celulares */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links li {
        margin: 0 10px;
    }
    .content-section h1 {
        font-size: 2.2rem;
    }
}