/*
Theme Name: Naturaly SPA Theme
Author: Naturaly SPA
Version: 1.0
*/

/* 1. FUENTE Y BASE (Estilo Inter/Bootstrap Moderno) */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    -webkit-font-smoothing: antialiased;
}

/* 2. JERARQUÍA DE TÍTULOS (Tus reglas optimizadas) */
h1 {
    font-size: 1.5rem !important;
    line-height: 1.2;
    font-weight: 800; /* Un poco más de peso para el H1 */
}

h2 {
    font-size: 1.3rem !important;
    line-height: 1;
    font-weight: 700;
}

h3, h4, h5 {
    font-size: 1.1rem !important;
    line-height: 1;
    font-weight: 600;
}

p {
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 1.3rem;
}

/* 3. REGLA PARA ITEMS DEL MENÚ (Sin subrayado y blancos) */
/* bg-danger está en el HTML, aquí controlamos el contenido */
.navbar-nav .nav-link, 
.navbar-nav .nav-link a,
.navbar-nav li a {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0.3rem 0.1rem;
    display: block;
}

/* Quitar subrayado general de enlaces en el menú por si acaso */
.navbar-nav a {
    text-decoration: none !important;
}

/* 4. CLASE NO-AUTOLINK */
.no-autolink a {
    pointer-events: none;
    text-decoration: none;
    color: inherit;
}

/* 5. OPTIMIZACIÓN MÓVIL (Basado en tus datos de Search Console) */
@media (max-width: 768px) {
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.3rem !important; }
    
    /* Ajuste de padding para el menú en móvil */
    .navbar-nav {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Menú horizontal siempre visible */
.nav li a {
    color: #ffffff !important;
    text-decoration: none !important;
    white-space: nowrap; /* Evita que las palabras se corten */
}

/* Ajuste para que en móviles muy pequeños no se amontonen */
@media (max-width: 576px) {
    .nav {
        font-size: 0.75rem !important; /* Letra un poco más pequeña en móvil */
        gap: 10px !important;
    }
}