/* SESSION 01 - HERO */

#session-01 {
    min-height: 100vh;
    padding-top: 120px;
}

#session-01 h1 {
    font-size: 3rem;
    line-height: 1.2;
}

#session-01 .text-highlight {
    position: relative;
    display: inline-block;
}

#session-01 .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-primary);
    opacity: 0.3;
    z-index: -1;
}

#session-01 img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

#session-01 img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    #session-01 {
        padding-top: 100px;
        min-height: auto;
    }
    
    #session-01 h1 {
        font-size: 2rem;
    }
    
    #session-01 img {
        margin-top: 2rem;
    }
}

