/* 
* Proyecto Inmobiliaria Riquelme - Condominio Doña Teresa
* Project section styles 
*/

/* Project Description */
.project-section {
    background-color: var(--color-white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0px -10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.project-description {
    color: var(--color-medium-gray);
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
}

.project-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 1.2s ease;
}

.project-image-container:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.project-text {
    padding: 3rem;
    background-color: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-text .section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Estilo para crear un efecto de continuidad entre secciones */
.hero-section + .project-section {
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

/* Animación para imágenes */
@keyframes revealImage {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.project-image img.reveal {
    animation: revealImage 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Media queries */
@media (max-width: 991.98px) {
    .project-section {
        margin-top: -30px;
    }
    
    .project-text .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .project-image-container {
        height: 350px;
    }
    
    .project-text {
        padding: 2rem 1.5rem;
    }
    
    .project-section {
        margin-top: -20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .hero-section + .project-section {
        margin-top: -20px;
    }
}

@media (max-width: 575.98px) {
    .project-section {
        margin-top: -15px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    .project-text {
        padding: 1.5rem;
    }
}