/* Variables de Color */
:root {
    --gold: #B8860B; /* Tu dorado principal */
    --dark-gray: #333333; /* Gris oscuro para texto principal */
    --light-gray: #f8f8f8; /* Gris muy claro para fondos sutiles */
    --white: #FFFFFF;
    --text-color: #4F4F4F; /* Color para el cuerpo de texto */
    --section-bg-gray: #ECECEC; /* Gris para secciones de fondo */
}

/* Reset Básico y Tipografía Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased; 
    scroll-behavior: smooth; 
}

a {
    text-decoration: none;
    color: var(--gold); 
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; 
    color: var(--dark-gray); 
    margin-bottom: 0.5em;
    line-height: 1.2;
}

/* Estilos Comunes para Secciones */
.menu-section, .info-section {
    padding: 4rem 1rem;
    max-width: 1000px; /* Ancho máximo similar al PDF */
    margin: 0 auto;
    text-align: center; /* Centra el contenido */
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray); 
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after { 
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0.8rem auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.accessories-section, .contact-section, .info-section.alternate-bg {
    background-color: var(--section-bg-gray); 
}

/* Botones (Coherentes con la página de presentación) */
.btn {
    display: inline-block;
    background-color: var(--dark-gray); 
    color: var(--white);
    padding: 0.8em 1.5em;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
    border: none; 
    cursor: pointer;
}

.btn:hover {
    background-color: #555555; 
    opacity: 1;
}

.primary-btn { 
    font-size: 1.2rem;
    padding: 1em 2em;
}

.secondary-btn { 
    font-size: 1.1rem;
    padding: 0.9em 1.8em;
    background-color: var(--gold); 
    color: var(--white);
}

.secondary-btn:hover {
    background-color: #a07a2a; 
}


/* Header del Menú (Distinto al de la página de presentación) */
.header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: relative; 
    z-index: 100;
}

.header .logo img {
    width: 100px; 
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
}

.header .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}


/* Menú de Chicharrón - Estructura con Imagen Fija y Scroll de Contenido (si es necesario) */
.main-chicharron-block {
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    padding: 2rem;
    text-align: left; 
}

.main-image-container {
    flex: 1 1 45%; 
    min-width: 300px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky; 
    top: 2rem; 
}

.main-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chicharron-options {
    flex: 1 1 45%; 
    min-width: 300px; 
}

.chicharron-options h3 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    margin-top: 0; 
}

.chicharron-options h3 .subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    display: inline; 
}

.option-item {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.option-item h4 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.option-item p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.option-item ul {
    list-style: none; 
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.option-item ul li {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    position: relative;
    padding-left: 1.2rem; 
}

.option-item ul li::before { 
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem; 
    font-weight: 700;
    color: var(--gold); 
    display: block; 
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.option-divider {
    border: none;
    border-top: 1px solid var(--light-gray);
    margin: 2rem 0;
}


/* Acompañamientos Adicionales */
.accessories-section {
    background-color: var(--section-bg-gray); 
    padding: 4rem 1rem;
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.accessory-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accessory-item img {
    max-width: 150px; 
    height: auto;
    border-radius: 50%; 
    border: 3px solid var(--gold); 
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accessory-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.accessory-item p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.accessory-item .price {
    font-size: 1.2rem;
    margin-top: 0;
    display: inline; 
    margin-left: 0.5em;
}

/* Secciones de Información y Pedido */
.order-section, .info-section {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left; 
}

.order-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.order-section ol {
    list-style: none;
    padding-left: 0;
    counter-reset: my-counter; 
}

.order-section ol li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem; 
}

.order-section ol li::before { 
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
}

.order-section ol li p {
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-btn {
    margin-top: 2rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.info-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-details-grid h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.info-details-grid p {
    font-size: 0.95rem;
    color: var(--text-color);
}

.qr-code {
    max-width: 150px;
    height: auto;
    display: block;
    margin-top: 1rem;
    border: 1px solid var(--light-gray); 
    border-radius: 5px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5rem;
}

.payment-logos img {
    max-height: 30px; 
    margin-right: 0.8rem;
    margin-bottom: 0.5rem; 
    opacity: 0.8;
}

/* Estilos para el nuevo enlace y el icono de ubicación */
.location-link {
    display: flex; /* Para alinear el icono y el texto */
    align-items: center;
    justify-content: center; /* Centrar en el caso de la grilla */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray); /* Color de texto como los otros títulos */
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--gold); /* Cambia a dorado al pasar el ratón */
}

.location-icon {
    width: 20px; /* Tamaño del icono de ubicación */
    height: auto;
    margin-right: 0.5rem; /* Espacio entre icono y texto */
    /* Filtro para dar color dorado al icono monocromático negro */
    filter: invert(40%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(85%) contrast(100%);
}


/* Footer (coherente con la página de presentación) */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--dark-gray);
    color: var(--white);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .small-logo {
    width: 70px;
    height: auto;
    margin-bottom: 1rem;
}

.footer .social-icons img {
    width: 30px; 
    height: auto;
    margin: 1rem 0.5rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: invert(100%); 
}

.footer .social-icons img:hover {
    opacity: 1;
}

/* BOTÓN FLOTANTE DE WHATSAPP (Asegúrate que 'whatsapp-icon.png' esté en la misma carpeta del HTML) */
.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px;
    bottom: 20px; 
    right: 20px; 
    background-color: #25D366; 
    color: var(--white);
    border-radius: 50%; 
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3); 
    z-index: 1000; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); 
}

.whatsapp-float img {
    width: 35px; 
    height: auto;
    filter: invert(100%); 
}


/* Responsive Design (para el menú detallado) */
@media (max-width: 768px) {
    .header .tagline {
        font-size: 2rem;
    }
    .header-description {
        font-size: 1rem;
    }
    .menu-section, .info-section {
        padding: 2rem 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    
    .main-chicharron-block {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    .main-image-container {
        position: static; 
        top: auto;
        padding-top: 0;
        order: -1; 
    }
    .main-image-container img {
        margin-bottom: 1rem;
    }
    .chicharron-options {
        min-width: unset;
        flex: 1 1 100%;
        text-align: center; 
    }
    .chicharron-options h3, .chicharron-options h4, .option-item p, .option-item ul, .option-item .price {
        text-align: center; 
    }
    .option-item ul li {
        padding-left: 0;
        text-align: center;
    }
    .option-item ul li::before {
        position: static;
        display: inline-block;
        margin-right: 0.5em;
    }

    .accessory-grid {
        grid-template-columns: 1fr; 
    }
    .info-details-grid {
        grid-template-columns: 1fr; 
    }
    .order-section, .info-section {
        text-align: center; 
    }
    .order-section ol li {
        padding-left: 0;
        text-align: center;
    }
    .order-section ol li::before {
        position: static;
        display: inline-block;
        margin-right: 0.5em;
    }
    .qr-code {
        margin-left: auto;
        margin-right: auto;
    }
    .payment-logos {
        justify-content: center; 
    }
}

@media (max-width: 480px) {
    .header .tagline {
        font-size: 2rem;
    }
    .header-description {
        font-size: 0.9rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 0.8em 1.5em;
    }
    .section-padded {
        padding: 2.5rem 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .chicharron-options h3 {
        font-size: 1.5rem;
    }
    .option-item h4 {
        font-size: 1.2rem;
    }
    .option-item p, .option-item ul li {
        font-size: 0.9rem;
    }
    .price {
        font-size: 1.4rem;
    }
    .accessory-item h4 {
        font-size: 1.2rem;
    }
    .accessory-item p {
        font-size: 0.85rem;
    }
}