/* Variables de Color */
:root {
    --gold: #B8860B; 
    --dark-gray: #333333; 
    --light-gray: #f8f8f8; 
    --white: #FFFFFF;
    --text-color: #4F4F4F; 
    --section-bg-gray: #ECECEC; 
}

/* 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 */
.section-padded {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.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;
}

.section-gray {
    background-color: var(--section-bg-gray);
}

/* Botones */
.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 */
.header {
    background-color: var(--white);
    padding: 1rem;
    position: sticky; 
    top: 0;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: 80px; 
    height: auto;
}

/* Estilos para la navegación en el header */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem; 
}

/* Ajuste específico para el botón "Ver Carta Completa" en el header */
.header .secondary-btn { /* Apunta a un .secondary-btn DENTRO del header */
    font-size: 0.9rem; /* Tamaño de fuente más pequeño para el header */
    padding: 0.6em 1.2em; /* Padding más pequeño */
}

.header-btn { /* Para el botón "Reserva tu De Luyo!" */
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
}

/* Hero Section */
#hero {
    background: url('chicharron-combo-hero.jpg') no-repeat center center/cover; 
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    color: var(--white);
    z-index: 1; 
}

#hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 0; 
}

.hero-content {
    z-index: 1; 
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); 
}


/* Sección Conveniencia */
.convenience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.convenience-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.convenience-item:hover {
    transform: translateY(-5px);
}

.convenience-item img {
    width: 60px; 
    height: auto;
    margin-bottom: 1.5rem;
    filter: invert(40%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(85%) contrast(100%); 
}

.convenience-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.convenience-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* NUEVA SECCIÓN Momentos De Luyo */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.moment-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.moment-item:hover {
    transform: translateY(-5px);
}

.moment-item img {
    width: 80px; /* Iconos más grandes para esta sección */
    height: auto;
    margin-bottom: 1.5rem;
    filter: invert(40%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(85%) contrast(100%); 
}

.moment-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.moment-item p {
    font-size: 1rem;
    color: var(--text-color);
}


/* Sección Calidad */
.quality-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

/* Sección Contacto */
.contact-number, .contact-address {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--text-color);
}
.contact-number {
    font-weight: 600; 
}


/* Footer */
.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 */
.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 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .header .logo img {
        width: 70px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .primary-btn {
        font-size: 1.1rem;
        padding: 0.9em 1.8em;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .convenience-grid, .moments-grid { /* Ajuste para la nueva sección */
        grid-template-columns: 1fr;
    }
    .contact-number, .contact-address {
        font-size: 1rem;
    }
    .header .secondary-btn { 
        font-size: 0.8rem;
        padding: 0.5em 1em;
    }
    .header-btn { 
        font-size: 0.8rem;
        padding: 0.5em 1em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .primary-btn {
        font-size: 1rem;
        padding: 0.8em 1.5em;
    }
    .section-padded {
        padding: 2.5rem 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .convenience-item h3, .moment-item h3 { /* Ajuste para la nueva sección */
        font-size: 1.2rem;
    }
    .convenience-item p, .moment-item p { /* Ajuste para la nueva sección */
        font-size: 0.9rem;
    }
    .contact-number, .contact-address {
        font-size: 0.9rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 30px;
    }
}