/*
 * Estilos para la página "Nosotros" - L'oricay Theme
 */

/* --- Hero Section (Parallax) --- */
.nosotros-hero {
    position: relative;
    height: 35vh; /* Altura reducida un 30% */
    min-height: 280px; /* Altura mínima reducida un 30% */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* Técnica para romper el contenedor y ocupar el ancho completo */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    
    /* La imagen de fondo se aplica ahora directamente en el PHP para máxima fiabilidad. */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.nosotros-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 59, 41, 0.4); /* Overlay oscuro para legibilidad */
    z-index: 1;
}

.nosotros-hero .hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* --- Secciones de Contenido General --- */
.nosotros-section {
    padding: 60px 20px;
}

.nosotros-section h2 {
    font-family: 'Cinzel', serif;
    color: #336633;
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
}

.nosotros-section p {
    margin-bottom: 1.5em;
    line-height: 1.7;
    color: #555;
}

/* --- Layout de 2 Columnas (Historia y Árbol) --- */
.nosotros-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Imagen para los grids de 2 columnas */
.nosotros-grid-2-col .grid-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 768px) {
    .nosotros-hero {
        background-attachment: scroll; /* Desactiva parallax en móvil */
    }

    .nosotros-grid-2-col,
    .nosotros-section .nosotros-grid-2-col {
        grid-template-columns: 1fr; /* Apila las columnas */
    }
}