/* CSS for the Home Section */
@import url(style.css);

.home-row {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.home-text-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-animation-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h1 {
    font-size: 5rem;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.title-separator {
    width: 80px;
    height: 5px;
    background-color:var(--highlight);
    margin: 15px 0 25px 0;
    border-radius: 2px;
}

.home-bio p {
    font-size: 1.6rem;
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 600px;
}

.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0px;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}


.animated-image {
    max-width: 100%;
    max-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .home-row {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .home-text-column {
        order: 1;
        padding: 30px;
        text-align: center;
    }
    
    .home-animation-column {
        order: 0;
        margin-bottom: 30px;
    }
    
    .home-content {
        text-align: center;
    }
    
    .title-separator {
        margin: 15px auto 25px auto;
    }
    
    .home-bio p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .animated-image {
        max-height: 300px;
    }
}