.paralax:has(.hero-content-generic){
    background-image: url("../../images/projects/copperworks/copperworks2.webp");
    background-position: center 40%;
}


/* Sections */
/* --------- Sections --------- */

.home-section{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-step-1);
}
.section-content{
    padding: 4rem 0;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.section-content.reverse {
    flex-direction: row-reverse;
}
.home-card{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 1rem;
}
.home-card:has(.home-card-text){
    margin: auto 0;
}
.home-card img{
    max-height: 400px;
}
.home-card-text{
    display: flex;
    flex-direction: column;
    justify-items: center;

}

.home-card-text h2{
    color: var(--electric-blue);
}

.home-card-text p{
    margin-top: 1.5rem;
}

.home-card-text .divider{
    margin-top: 1.5rem;
    height: 4px;
    width: 20%;
    background-color: var(--electric-yellow);
}

@media(max-width: 700px){
    .home-section .home-card{
        width: 100%;
    }
    .home-card-text h2, .home-card-text p{
        text-align: center;
    }

    .home-card-text p{
        padding: 0 2rem;
    }
    
    .home-card-text .divider{
        margin: 1.5rem auto;
    }
    .section-content,
    .section-content.reverse {
        flex-direction: column;
    }
}