/* Var Defined Styles */

:root {

    --color-primary-1: #eceff3;
    --color-primary-2: #d93226;
    --color-secondary-1: #d367c1;

    --color-page-background: #0D161C;

    --color-content:#1B2832; 
    --color-content-select: #087ec4;

    --color-text:#c5c5ce; 
    --color-green: #00e9ba;

}

/* General Styles */
html {
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Roboto-Regular", Helvetica, sans-serif;
    font-size: 1.5rem;
    background-color: var(--color-page-background);
    color: var(--color-primary-1);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary-1);
}

/* Layout Styles */
.layout {
    width: 100%;
    height: 100%;
}

/* Header */
.layout__header {
    width: 100%;
    background-color: var(--color-content);
    padding: 2rem 3rem;
    transition: all 00ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.header__logo {
    width: 20rem;
    max-width: 20rem;
    height: auto;
}

.header__img {
    display: block;
    pointer-events: none;
    width: 100%;
    height: auto;
    aspect-ratio: 20/3;
}

.layout__header--sticky {
    position: sticky;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
}

/* Layout Sets general */
.layout__profile,
.layout__contact,
.layout__social,
.layout__entertainment,
.layout__more,
.layout__footer {
    margin: 0px auto;
    max-width: 560px;
    height: 100%;
    padding: 0rem 2rem;
}

/* Perfil */
.profile__container {
    margin: 6rem 0rem 3rem 0rem;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.profile__header {
    width: 100%;
    height: 100%;
    margin-bottom: 4rem;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.profile__content-img {
    flex-basis: 10rem;
    min-width: 10rem;
    border: 4px solid var(--color-primary-2);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.profile__img {
    display: block;
    pointer-events: none;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 2px solid var(--color-page-background);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.profile__info {
    margin-left: 2rem;
}

.profile__title {
    font-family: "Gelion-Bold", "Robot-Bold", Helvetica, sans-serif;
    font-size: 3.4rem;
    text-align: left;
}

.profile__subtitle {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    color: var(--color-green);
}

.profile__subinfo {
    width: 100%;
    height: 100%;
    display: block;
}

.profile__description {
    font-family: "Roboto-Light", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--color-text);
}

/* Bottoms containers */
.button__cards {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2rem;
}

.button__card {
    border: none;
    overflow: hidden;
    background-color: var(--color-content);
    border-left: 1rem solid var(--color-primary-2);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

@media (hover :hover) {
    .button__card:hover {
        background-color: var(--color-content-select);
        box-shadow: 0px 0px 1rem var(--color-content-select);
    }
}

.card__link {
    cursor: default;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 1rem;
    padding: 1.3rem 1rem;
    min-height: 9rem;
}

.card__icon {
    font-size: 2.5rem;
    width: 4rem;
    min-width: 4rem;
}

.card__info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.card__title {
    font-family: "Roboto-Bold";
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2rem;
    line-height: 1;
}

.card__description {
    text-align: left;
    font-weight: 200;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--color-text);
}

/* Titulos */
.contact__header,
.social__header,
.entertainment__header,
.more__header {
    margin-bottom: 1rem;
    width: fit-content;
}

.contact__title,
.social__title,
.entertainment__title,
.more__title {
    font-weight: 200;
}

/* Containers */
.contact__container,
.social__container,
.entertainment__container,
.more__container,
.footer__container {
    width: 100%;
    height: 100%;
    margin-bottom: 3rem;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

/* Footer */
.footer__top {
    margin: 6rem 0rem 2rem 0rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer__logo {
    width: 7rem;
    max-width: 7rem;
    height: auto;
}

.footer__img {
    display: block;
    pointer-events: none;
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
}

.footer__bottom {
    margin-bottom: 6rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer__description {
    display: block;
    width: fit-content;
    text-align: center;
    font-family: "Roboto-Light", sans-serif;
    font-size: 1.4rem;
    color: var(--color-text);
}

.footer__link {
    color: var(--color-green);
}

@media (hover :hover) {
    .footer__link:hover {
        color: var(--color-secondary-1);
    }
}

@media (max-width: 500px) {
    .header__logo {
        margin: 0 auto;
    }
}