/**
 * Estilos tipo libro para Novena de Navidad
 * Diseño limpio, elegante y muy legible en móvil
 */

/* Contenedor principal tipo libro */
.novena-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.novena-content-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Tipografía mejorada */
.novena-content-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.novena-content-body h2,
.novena-content-body h3,
.novena-content-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #333;
    font-weight: 600;
}

.novena-content-body h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    text-align: center;
}

.novena-content-body h3 {
    font-size: 1.5rem;
    color: #007bff;
}

.novena-content-body h4 {
    font-size: 1.25rem;
}

/* Listas */
.novena-content-body ul,
.novena-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.novena-content-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Villancicos - letras */
.villancico-lyrics {
    font-size: 1.15rem;
    line-height: 2.2;
    text-align: center;
}

.villancico-lyrics p {
    margin-bottom: 1.75rem;
    font-style: italic;
}

.villancico-lyrics h2,
.villancico-lyrics h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    font-style: normal;
}

/* Tarjetas de enlaces */
.novena-link-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.novena-link-card:hover {
    background-color: #f8f9fa;
    border-color: #007bff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    text-decoration: none;
}

.villancico-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    height: 100%;
}

.villancico-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px);
}

/* Navegación tipo libro */
.novena-navigation {
    border-top: 2px solid #dee2e6;
    padding-top: 2rem;
}

.novena-navigation .btn {
    padding: 1rem;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.novena-navigation .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Oraciones fijas - bloque colapsable */
.oraciones-fijas-block .card {
    border-radius: 8px;
    overflow: hidden;
}

.oraciones-fijas-block .card-header {
    border-radius: 0;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    .novena-content {
        padding: 1rem 0.5rem;
    }
    
    .novena-content-body {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .novena-content-body h2 {
        font-size: 1.5rem;
    }
    
    .novena-content-body h3 {
        font-size: 1.25rem;
    }
    
    .villancico-lyrics {
        font-size: 1rem;
        line-height: 2;
    }
    
    .novena-navigation .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .novena-link-card,
    .villancico-card {
        margin-bottom: 1rem;
    }
}

/* Mejoras de accesibilidad */
.novena-content-body a {
    color: #007bff;
    text-decoration: underline;
}

.novena-content-body a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Espaciado mejorado para lectura */
.novena-content-body > *:first-child {
    margin-top: 0;
}

.novena-content-body > *:last-child {
    margin-bottom: 0;
}

