@import "reset.css";
@import "colors.css";

.gf-belleza-regular {
    font-family: "Belleza", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.gf-montserrat-regular {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.gf-passions-conflict-regular {
    font-family: "Passions Conflict", cursive;
    font-weight: 400;
    font-style: normal;
}

.gf-montserrat-medium {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.gf-montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.ls-icon {
    display: block;
    width: 25px;
    height: 25px;
    background-color: var(--main);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.ls-icon--home {
    mask-image: url(/img/icons/home.svg);
    -webkit-mask-image: url(/img/icons/home.svg);
}

.ls-icon--instagram {
    mask-image: url(/img/icons/instagram.svg);
    -webkit-mask-image: url(/img/icons/instagram.svg);
}

.ls-icon--youtube {
    mask-image: url(/img/icons/youtube.svg);
    -webkit-mask-image: url(/img/icons/youtube.svg);
}

.ls-icon--spotify {
    mask-image: url(/img/icons/spotify.svg);
    -webkit-mask-image: url(/img/icons/spotify.svg);
}

.ls-icon--next {
    mask-image: url(/img/icons/chevron-right.svg);
    -webkit-mask-image: url(/img/icons/chevron-right.svg);
}

.ls-icon--prev {
    mask-image: url(/img/icons/chevron-left.svg);
    -webkit-mask-image: url(/img/icons/chevron-left.svg);
}

.cm-body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
    font-family: "Belleza", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.0rem;
    line-height: 1.3rem;
}

.cm-body__nav {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--block-background);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 9;
    box-shadow: 0px 1px 10px var(--main-opacity);
}

.cm-body__nav__logo__img {
    height: 35px;
    width: auto;
}

.cm-body__nav__logo__text {
    font-size: 2.2rem;
    line-height: 2.4rem;
    color: var(--main);
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cm-body__nav__btns__btn__icon {
    background-color: var(--main);
}

.cm-body__nav__btns__btn .cm-body__nav__btns__btn__icon:hover {
    cursor: pointer;
    background-color: var(--main-hover);
}

.ls-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    -moz-transition: color 0.3s ease, background-color 0.3s ease;
    -ms-transition: color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease;
    width: fit-content;
}

.ls-button:hover {
    cursor: pointer;
}

.ls-button--default {
    background-color: var(--button);
    color: var(--main);
}

.ls-button--default:hover {
    background-color: var(--button-hover);
}

.ls-button--accent {
    background-color: var(--main);
    color: white;
}

.ls-button--accent:hover {
    background-color: var(--main-hover);
}

.cm-body__footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--block-background);
    padding-top: 20px;
    padding-bottom: 25px;
}

.cm-body__footer__legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 15px;
}

.cm-body__footer__legal__li {
    width: 250px;
    display: flex;
    flex: column;
    align-items: center;
    justify-content: center;
}

.cm-body__footer__legal__li__a {
    text-align: center;
}

.cm-body__footer__copy {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.cm-body__footer__credits {
    text-align: center;
}


.cm-body__footer__legal__li__a,
.cm-body__footer__credits {
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    color: var(--main);
}

.cm-body__footer__legal__li__a:hover,
.cm-body__footer__credits:hover {
    cursor: pointer;
    color: var(--main-hover);
}

.cm-body__footer__socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.cm-body__footer__socials__li__a .cm-body__footer__socials__li__a__icon:hover {
    cursor: pointer;
    background-color: var(--main-hover);
}

.cm-body__window-bg {
    background-color: var(--black-opacity);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    z-index: 10;
}

.cm-body__window-bg--hidden {
    opacity: 0;
}

.cm-body__window-bg__window {
    background-color: var(--block-background);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease 0.3s;
    -webkit-transition: opacity 0.5s ease 0.3s;
    -moz-transition: opacity 0.5s ease 0.3s;
    -ms-transition: opacity 0.5s ease 0.3s;
    -o-transition: opacity 0.5s ease 0.3s;
    opacity: 1;
}

.cm-body__window-bg--hidden .cm-body__window-bg--hidden {
    opacity: 0;
}

.cm-body__window-bg__window__title {
    font-size: 1.7rem;
    line-height: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.cm-body__window-bg__window__text {
    font-size: 1.3rem;
    line-height: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

