/* HERO */
.hero {
    position: relative;
    min-height: 120vh; /* Ocupa toda la altura de la ventana */
    background-image: url('../img/heroBack.jpeg'); /* Ruta a tu imagen */
    background-size: cover; /* Asegura que la imagen cubra toda el área */
    background-position: center; /* Centra la imagen */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f6f6ed3d; /* Texto claro sobre la imagen */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa oscura para resaltar el texto */
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2; /* Asegura que el texto esté sobre la capa oscura */
    justify-content: center;
    align-items: center;
    padding-top: 7rem;
}

.hero-title {
    font-family: "Lora", serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f6f6ed;
}

.hero-subtitle {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 400;
    color: #e0e0c8;
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 4rem;
        
    }
    .hero-content {
        padding-top: 0rem;
    }
    .hero-title {
        line-height: 70px;

    }


}