/* --- Reseteo General --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* --- Paleta de Colores de Branding (Basado en image_1.png) --- */
:root {
    --color-green: #115228;    /* Fondo de cabecera y pie */
    --color-yellow: #FFD13B;   /* Fondo de hero */
    --color-brown: #4E3B33;    /* Fondo de ubicación/contacto */
    --color-red: #E62117;      /* Botones, precios */
    --color-white: #FFFFFF;    /* Fondo de cuadrícula de menú */
    --color-chalk: #F5F5F5;    /* Texto con efecto de tiza */
    --color-text-dark: #333;   /* Texto oscuro */
}

/* --- Estilos Generales --- */
body {
    background-color: var(--color-yellow);
    color: var(--color-text-dark);
}

.chalk-effect {
    color: var(--color-chalk);
    text-shadow: 
        1px 1px 1px rgba(0,0,0,0.5),
        -1px -1px 1px rgba(255,255,255,0.3);
    font-weight: bold;
    text-transform: uppercase;
}

/* --- Botones --- */
.order-now-btn,
.explore-menu-btn {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* --- Cabecera (Header) --- */
header {
    background-color: var(--color-green);
    padding: 20px 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === AQUI CAMBIAMOS EL TAMAÑO A 200PX === */
header .logo img {
    height: 200px; 
    width: auto;   
    display: block;
    border-radius: 15px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

header nav a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: bold;
}

header nav .order-now-btn {
    padding: 10px 20px;
}

/* --- Sección Hero --- */
.hero {
    background-color: var(--color-yellow);
    padding: 100px 0;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--color-brown);
    margin-bottom: 30px;
}

.hero-text .explore-menu-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

.hero-taco-icon img {
    height: 40px; 
    margin-top: 30px;
}

.hero-image {
    width: 50%;
}

.hero-image img {
    width: 100%;
    border-radius: 50%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Sección Menú --- */
.menu {
    background-color: var(--color-white);
    padding: 80px 0;
}

.menu-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-card {
    border: 1px solid var(--color-brown);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
}

.menu-card-details {
    padding: 20px;
}

.menu-card-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.menu-card-details .price {
    color: var(--color-red);
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.menu-card-details p {
    color: var(--color-brown);
}

/* --- Sección Ubicación --- */
.location {
    background-color: var(--color-brown);
    padding: 80px 0;
    text-align: center;
}

.location-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.location h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.location-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: var(--color-white);
}

.map-icon img {
    height: 60px; 
}

.address p,
.hours p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* --- Pie de Página (Footer) --- */
footer {
    background-color: var(--color-brown);
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--color-white);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* === AQUI CAMBIAMOS EL TAMAÑO A 150PX === */
footer .logo img {
    height: 150px; 
    width: auto;   
    margin-bottom: 20px; 
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a img {
    height: 30px; 
}

.copyright {
    font-size: 0.9rem;
}

/* --- Responsive (Para móviles y tablets) --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-details {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Enlace del mapa --- */
.map-link {
    text-decoration: none;
    transition: transform 0.2s;
}
.map-link:hover {
    transform: scale(1.1);
}