/* Variables CSS para una fácil personalización de colores */
:root {
    --primary-color: #A32E23; /* Rojo intenso, como el achiote */
    --secondary-color: #FFC107; /* Amarillo vibrante, como el sol de Yucatán */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f8f8;
    --border-light: #ddd;
    --whatsapp-green: #25D366;
}

/* Base: Reset CSS y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Puedes importar esta fuente de Google Fonts si la quieres */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth; /* Desplazamiento suave al hacer clic en enlaces internos */
}

.container {
    width: 90%;
    max-width: 960px; /* Ancho máximo para escritorios */
    margin: 0 auto;
    padding: 20px 0;
}

/* HEADER */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

header .logo {
    max-width: 180px; /* Tamaño del logo */
    height: auto;
    display: block; /* Para centrarlo con margin auto */
    margin: 0 auto;
}

h1 {
    font-family: 'Oswald', sans-serif; /* Otra fuente de Google Fonts, si la usas */
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

/* SECCIÓN MENÚ VISUAL */
#menu-visual {
    background-color: #fff;
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#menu-visual h2 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Columnas responsivas */
    gap: 25px;
}

.menu-item {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden; /* Para que la imagen no se salga del borde redondeado */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 180px; /* Altura fija para las imágenes del menú */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    border-bottom: 3px solid var(--secondary-color);
    margin-bottom: 15px;
}

.menu-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

/* SECCIÓN FORMULARIO */
#pedido-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

#pedido-form h2 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
    margin-top: 20px;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.campo-oculto {
    display: none; /* Se mostrará con JavaScript */
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1); /* Hace el checkbox un poco más grande */
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: #1DA851; /* Un verde un poco más oscuro */
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 25px 0;
    font-size: 0.9em;
    margin-top: 40px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFEA00;
}

/* BOTÓN WHATSAPP FLOTANTE */
.whatsapp-flotante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
    background-color: #1DA851;
}

/* RESPONSIVE DESIGN (Media Queries) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    .subtitle {
        font-size: 1em;
    }
    #menu-visual h2, #pedido-form h2 {
        font-size: 1.8em;
    }
    .menu-item img {
        height: 150px;
    }
    .menu-item h3 {
        font-size: 1.4em;
    }
    #pedido-form {
        padding: 30px;
    }
    .btn-submit {
        font-size: 1.1em;
        padding: 12px;
    }
    .whatsapp-flotante {
        width: 55px;
        height: 55px;
        font-size: 2em;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    header .logo {
        max-width: 150px;
    }
    h1 {
        font-size: 1.8em;
    }
    .subtitle {
        font-size: 0.9em;
    }
    #menu-visual h2, #pedido-form h2 {
        font-size: 1.6em;
    }
    .menu-grid {
        grid-template-columns: 1fr; /* Una sola columna para móviles muy pequeños */
    }
    .menu-item img {
        height: 120px;
    }
    .menu-item h3 {
        font-size: 1.2em;
    }
    #pedido-form {
        padding: 20px;
    }
    form label, form input, form select, form textarea, .btn-submit {
        font-size: 0.9em;
    }
    .whatsapp-flotante {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        bottom: 15px;
        right: 15px;
    }
}