/* 
* Proyecto Inmobiliaria Riquelme - Condominio Doña Teresa
* Hero section styles - Updated for full-size video and iOS compatibility
*/

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    min-height: 700px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Fix para iOS Safari */
    -webkit-transform: translate(-50%, -50%);
    -webkit-video-playable-inline: true;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Configuración para la animación al hacer scroll */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.title-slide, .subtitle-slide {
    color: white;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

.title-slide {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.subtitle-slide {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-content .btn {
    transition: opacity 0.6s ease, transform 0.6s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Media queries */
@media (max-width: 991.98px) {
    .title-slide {
        font-size: 2.5rem;
    }
    
    .subtitle-slide {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .title-slide {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 600px;
        height: 100vh;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1rem;
    }
    
    .title-slide {
        font-size: 1.8rem;
    }
    
    .subtitle-slide {
        font-size: 1rem;
    }
}