/**
 * Estilos personalizados para el tema Chukum Natural
 */

body { 
    font-family: 'Montserrat', sans-serif; 
}

/* Títulos de sección en Arvo Bold 700 */
h2, h3, h4, h5, h6 { 
    font-family: 'Arvo', serif;
    font-weight: 700;
}

/* Se mantiene la fuente original del H1 */
h1 { 
    font-family: 'Montserrat', sans-serif; 
}

/* Ajuste de tamaño para el título principal del hero */
#hero-slider h1 {
    font-size: 3.25rem;
    line-height: 1.1;
}
@media (min-width: 768px) {
    #hero-slider h1 {
        font-size: 4.25rem;
    }
}

/* Menú del header en Arvo Regular 400 */
#masthead nav a {
    font-family: 'Arvo', serif;
    font-weight: 400;
}

/* Hover más intenso para el menú y botón móvil */
#masthead nav a:hover,
#mobile-menu-toggle:hover {
    color: #FBBF24 !important;
}

/* El padding-top solo se aplica si NO es la página de inicio */
body:not(.home) main#primary {
    padding-top: 140px;
}

/* Estilos para el menú móvil */
#mobileMenu nav a {
    display: block;
}
#mobileMenu .sub-menu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}
#mobileMenu .sub-menu a {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}


/* Paleta de colores personalizada */
.chukum-bg-dark { background-color: #383431; }
.chukum-bg-light { background-color: #EAE3D7; }
.chukum-bg-brown { background-color: #A18A79; }
.chukum-bg-tan { background-color: #D3C4B3; }

.chukum-text-dark { color: #884c2b; }
.chukum-text-light { color: #EAE3D7; }
.chukum-text-brown { color: #A18A79; }
.chukum-border-brown { border-color: #A18A79; }

/* Estilos para el texto de las secciones */
#quees p, #kit p, .about-section-text p {
     font-size: 1.125rem;
     line-height: 1.75rem;
}

/* Estilos para resaltar los detalles del kit */
.kit-details {
    font-size: 1.25rem !important;
    font-weight: 500;
    color: #A06145 !important;
    line-height: 2.25rem !important;
}

/* Estilos para el acordeón de FAQ */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estilo para la textura de puntos sobre el video */
.video-dot-overlay {
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.3) 1px, transparent 0);
    background-size: 3px 3px;
}

/* --- ESTILOS PARA EL BLOG --- */
.prose h2 {
    font-size: 1.75rem;
    margin-top: 2em;
    margin-bottom: 1em;
    color: #884c2b; 
}
.prose p, .prose ul, .prose li {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1.25em;
}
.entry-header p, .entry-content p, .entry-content li {
    color: #884c2b;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
}
.prose li {
    margin-bottom: 0.5em;
}
.prose blockquote {
    border-left: 4px solid #A18A79;
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    color: #555;
}

/* --- ESTILOS PARA LA SECCIÓN DEL BLOG EN LA PÁGINA DE INICIO --- */
#blog .text-gray-600 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* --- ESTILOS PARA EL BOTÓN 'LEER MÁS' DEL BLOG --- */
.blog-read-more-btn {
    display: block;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    background-color: #884c2b;
    color: #FFFFFF;
    transition: background-color 0.2s ease-in-out;
}

.blog-read-more-btn:hover {
    background-color: #A06145;
}

/* --- ESTILOS PARA EL FOOTER (VERSIÓN FINAL) --- */
.site-footer {
    background-color: #512717;
}

.site-footer h4,
.site-footer a,
.site-footer i,
.site-footer p {
    color: #D1CABB;
}

.site-footer a:hover {
    color: #FFFFFF;
}

.site-footer nav {
    list-style: none;
    padding: 0;
}

/*
==============================================
--- RESPONSIVE FIXES ---
==============================================
*/
@media (max-width: 767px) {
    /* HEADER: Reduce padding and spacing on mobile */
    #masthead {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #masthead .flex.items-center.space-x-8 {
        space-x: 1rem;
    }
    #masthead .flex.items-center.space-x-4 {
        space-x: 1rem;
    }

    /* HERO: Reduce font size on mobile to prevent overflow */
    #hero-slider h1 {
        font-size: 2.5rem; /* ~text-4xl */
    }

    /* KIT: Make image responsive */
    #kit img {
        height: auto; /* Remove fixed height */
        max-width: 280px; /* Set a max-width */
    }
}

