@import './global.css';

.about_creator {
    width: 100%;
    height: auto;
    padding-top: 48px;
    background-color: var(--section-clear);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content_jnk_description {
    width: 80%;
    max-width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.content_jnk_description h2 {
    font-size: 1.8rem;
    color: var(--white-page);
    margin-bottom: 32px;
}
.content_jnk_description h2 strong {
    font-family: 'Bruno Ace', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    letter-spacing: 1.2px;
}
.content_jnk_description h3 {
    font-size: 1.4rem;
    color: var(--white-page);
    margin-bottom: 20px;
    text-align: center;
    max-width: 330px;
}
.content_jnk_description h3 strong {
    color: var(--primary-color);
}

.card_creator_description {
    width: 100%;
    height: 350px;
    background-color: var(--section-dark);
    border-radius: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.content_image_creator {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--secundary-color);
}

.content_image_creator img{
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}
.mirror {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(32 32 32 / 74%);
}
.text_description {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 12px 16px;
    align-items: center;
}

.text_description p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white-page);
}
.text_description p strong {
    color: var(--primary-color);
}
.button_more_information {
    width: 80%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-page);
    cursor: pointer;
    background-color: var(--primary-color);
    border-radius: 4px;
    margin-top: 14px;
    box-shadow: 2px 2px 4px #ff84005e;
}

.button_more_information span{
    display: block;
    width: 14px;
    height: 16px;
    background-image: url(../icons/left-arrow-white.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 400px) {
    .text_description {
        padding: 24px 16px 16px;
    }
    .button_more_information {
        margin-top: 20px;
    }
}
@media screen and (min-width: 700px) and (min-height: 510px){
    .about_creator {
        padding-top: 60px;
    }
    .content_jnk_description h2 {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }
    .content_jnk_description h2 strong {
        font-size: 3rem;
        letter-spacing: 1.8px;
    }
    .content_jnk_description h3 {
        font-size: 1.8rem;
        margin-bottom: 32px;
        max-width: 372px;
    }
    .card_creator_description {
        width: 80%;
        height: 420px;
    }
    .text_description {
        padding: 20px 16px 0px;
    }
    .text_description p {
        font-size: 1.4rem;
    }
    .button_more_information {
        width: 80%;
        height: 32px;
        font-size: 1.4rem;
        border-radius: 8px;
        gap: 6px;
    }
    .button_more_information span {
        width: 16px;
        height: 20px;
    }
}

@media screen and (min-width: 830px) and (max-height: 500px) {
    .card_creator_description {
        width: 70%;
        height: 290px;
    }
}
@media screen and (min-width: 1900px) {
    .about_creator {
        padding-top: 80px;
    }
    .content_jnk_description h2 {
        font-size: 2.8rem;
        margin-bottom: 60px;
        letter-spacing: 0.8px;
    }
    .content_jnk_description h2 strong {
        font-size: 3.4rem;
        letter-spacing: 1.8px;
    }
    .content_jnk_description h3 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        max-width: 454px;
    }
    .card_creator_description {
        width: 80%;
        height: 500px;
    }
    .text_description {
        padding: 28px 20px 0px;
        gap: 12px;
    }
    .text_description p {
        font-size: 1.6rem;
    }
    .button_more_information {
        width: 80%;
        height: 36px;
        font-size: 1.4rem;
        border-radius: 8px;
        gap: 6px;
        margin-top: 12px;
    }
}