@import url('variables.css');
@import url('reset.css');
@import url('header.css');
@import url('sections.css');
@import url('contact.css');
@import url('responsive.css');

/* Fondo para la sección de inicio */
#inicio {
    position: relative;
    background: url('../img/FondoInicio.png') no-repeat center center;
    background-size: cover;
}

/* Overlay para mejorar la legibilidad del texto */
#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Ajusta la opacidad según necesites */
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
#inicio .hero-container {
    position: relative;
    z-index: 2;
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
    #inicio {
        background: url('../img/FondoInicio.png') no-repeat center center;
        background-size: cover;
    }
}