/* Hero Section Styles */
.hero {
    background: url(../../public/images/hero.png) no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: linear;
    height: 200vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 0;
    animation: heroGlow 12s ease-in-out infinite alternate;
}

.hero .artist {
    position: absolute;
    color: #fff;
    width: 50%;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeSlide 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.hero .artist-name,
.hero .catchy-phrase,
.hero .buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeSlide 1.1s ease-out forwards;
}

.hero .artist-name {
    font-size: 8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    animation-delay: 0.5s;
}

.hero .artist-name span {
    color: #FFBA4A;
}

.hero .catchy-phrase {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    animation-delay: 0.8s;
}

.hero .buttons {
    display: flex;
    gap: 1.5rem;
    animation-delay: 1s;
}

@keyframes heroFadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    from {
        transform: translateZ(0) scale(1);
        filter: brightness(0.95);
    }
    to {
        transform: translateZ(0) scale(1.02);
        filter: brightness(1.05);
    }
}

.hero .buttons .streaming {
    background-color: #72c019;
}

.hero .buttons .streaming:hover {
    box-shadow: 0px 0px 30px #00df5d;
}

.hero .buttons .contact2:hover, .about .image-curriculum .curriculum:hover {
    box-shadow: 0px 0px 30px #ffd000;
}

.contact2, .streaming {
    padding: 1.25rem 4rem;
    font-size: 1.5rem;
}

/* about section styles */

.about {
    background-color: #12140E;
    padding: 8rem 3rem;
    display: flex;
    gap: 5rem;
}

.about .image-curriculum {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about .image-curriculum img {
    height: 850px;
    width: 100%;
    object-fit: cover;
    object-position: top; /* mantém o rosto visível */
}

.about .image-curriculum .curriculum-portfolio {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.about .image-curriculum .curriculum {
    text-align: center;
    font-size: 1.25rem;
    padding: 1rem 0;
    background-color: #FFBA4A;
    width: 50%;
}

.about .description {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about .description .profession {
    font-size: 4.5rem;
    font-weight: 400;
    color: #E3E3D9;
}

.about .description .profession span {
    color: #C3C8BC;
}

.about .description .history {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: #C3C8BC;
    line-height: 2.5rem;
    text-align: justify;
    max-width: 700px;
}

.about .description .info {
    display: flex;
    gap: 14.5rem;
}

.about .description .info .years-history, .about .description .info .albums {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about .description .info .years {
    font-size: 2.25rem;
    color: #FFBA4A;
}

.about .description .info .label {
    font-size: 0.75rem;
    color: #C3C8BC;
}

.about .image-curriculum {
    opacity: 0;
    transform: translateX(-35px);
}

.about .description {
    opacity: 0;
    transform: translateX(35px);
}

.about .image-curriculum .curriculum-portfolio,
.about .description .info {
    opacity: 0;
    transform: translateY(25px);
}

.about.animate .image-curriculum {
    animation: aboutImageSlideIn 0.8s ease-out 0.2s forwards;
}

.about.animate .description {
    animation: aboutTextSlideIn 0.8s ease-out 0.25s forwards;
}

.about.animate .image-curriculum .curriculum-portfolio,
.about.animate .description .info {
    animation: aboutFadeUp 0.8s ease-out 0.55s forwards;
}

@keyframes aboutImageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutTextSlideIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    /* about section styles */

    .about {
        flex-direction: column-reverse;
        align-items: center;
    }
    .about .image-curriculum img {
        height: 1000px;
    }

    .about .description {
        max-width: 100%;
    }

    .about .description .profession {
        font-size: 4rem;
    }

    .about .description .history {
        margin: 0 auto;
    }

    .about .description .info {
        justify-content: space-around;
    }

    .about .description .info .years {
        font-size: 1.75rem;
    }

}

@media (max-width: 768px) {
    .hero {
        background-position: 5% 15%;
        height: 100vh;
    }

    .about .image-curriculum img {
        height: 900px;
    }

    .hero .artist-name {
        font-size: 5rem;
    }

    .hero .catchy-phrase {
        font-size: 1.25rem;
    }

    .contact2, .streaming {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Hero */
    .hero {
        background-position: 20% 50%;
        height: 100vh;
        padding-left: 1.5rem;
        padding-top: 3rem;
    }

    .hero .artist {
        width: 75%;
    }

    .hero .artist-name {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .hero .catchy-phrase {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact2, .streaming {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }

    /* About */
    .about {
        padding: 4rem 1.5rem;
        gap: 2rem;
    }

    .about .image-curriculum img {
        height: 700px;
    }

    .about .description .profession {
        font-size: 2.75rem;
    }

    .about .description .history {
        font-size: 1rem;
        line-height: 2rem;
    }

    .about .description .info {
        justify-content: space-around;
    }

    .about .description .info .years {
        font-size: 1.5rem;
    }
}

@media (max-width: 375px) {

    /* Hero */
    .hero {
        background-position: 10% 50%;
        padding-left: 1rem;
        padding-top: 2rem;
    }

    .hero .artist-name {
        font-size: 2.75rem;
        margin-bottom: 0.75rem;
    }

    .hero .catchy-phrase {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .hero .buttons {
        gap: 0.75rem;
    }

    .contact2, .streaming {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    /* About */
    .about {
        padding: 3rem 1rem;
        gap: 1.5rem;
    }

    .about .description .profession {
        font-size: 1.75rem;
    }

    .about .image-curriculum img {
        height: 600px;
    }

    .about .description .history {
        font-size: 0.9rem;
        line-height: 1.75rem;
    }

    .about .description .info {
        gap: 2.5rem;
    }

    .about .description .info .years {
        font-size: 1.25rem;
    }

    .about .description .info .label {
        font-size: 0.65rem;
    }
}