@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/unbounded.ttf') format('truetype');
}

@font-face {
    font-family: 'PlayFair Display';
    src: url('../fonts/playfair_display.ttf') format('truetype');
}

@font-face {
    font-family: 'PlayFair Display Italic';
    src: url('../fonts/playfair_display_italic.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    font-family: 'Unbounded', sans-serif;
    font-weight: 200;
}

a {
    cursor: pointer;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 5rem;
    font-weight: 900;
}

h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
}

h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
}

h5 {
    font-family: 'Unbounded', serif;
    font-size: 1rem;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: black;
    transition: background-color 0.2s ease;
}

.open-smartphone-menu {
    display: none;
}

.smartphone-links {
    display: none;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    max-width: 1080px;
    margin: auto;
}

.navbar-content a {
    display: flex;
    justify-content: start;
    align-items: center;
}

.--mobile {
    display: none;
}

.--desktop {
    display: block;
}

.navbar .links {
    display: flex;
    align-items: center;
}

.header-container {
    position: relative;
    height: 150vh;
}

footer {
    background: black;
    display: flex;
    flex-direction: column;
    font-family: 'Unbounded', sans-serif;
}

.fade-button {
    border: 2px solid white;
    border-radius: 5rem;
    padding: 1em 2rem 1rem 2rem;
    background: black;
    cursor: pointer;
    align-self: center;
    transition: 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    color: white;
}

.fade-button:hover {
    border-color: #A57AF5;
}

.fade-button span {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
}

.animated-button {
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.animated-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background-color: #A57AF5;
    z-index: 0;
    transition: 0.5s ease;
}

.animated-button--inversed::before {
    background-color: #A57AF5;
}

.animated-button--inversed:hover {
    border-color: #A57AF5;
}

.animated-button:hover::before {
    left: 0;
}

.animated-button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.animated-button:hover span {
    color: black;
}

.animated-button--inversed:hover span {
    background-color: white;
}

.animated-button li {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.animated-button:hover li {
    color: black;
}

.animated-button--inversed:hover li {
    color: white;
}

.call-to-contact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12vh 0 26vh 0;
    background-color: white;
}

.call-to-contact p {
    color: black;
    font-size: 2.3rem;
    font-weight: 200;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
}

.scroll-button {
    align-self: center;
    margin-top: 1rem;
    border: 1px solid black;
    border-radius: 5rem;
    padding: 0.2rem 0 0.2rem 0;
    background: white;
    overflow: hidden;
    width: 18rem;
    max-width: 45vw;
    cursor: pointer;
    --gap: 0.5rem;
    --duration: 3s;
    gap: var(--gap);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.scroll-button li {
    font-family: 'PlayFair Display', serif;
}

.scroll-text {
    white-space: nowrap;
    display: flex;
    font-size: 2rem;
    font-family: 'PlayFair Display', serif;
    color: #000;
    gap: var(--gap);
}

.scroll-text--white {
    color: white;
}

.scroll-text ul {
    display: flex;
    padding: 0;
    animation: infiniteScrollToLeft var(--duration) linear infinite;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    font-family: 'Unbounded', sans-serif;
}

.scroll-text .--toRight {
    animation: infiniteScrollToRight var(--duration) linear infinite;
    transform: translateX(calc(-100% - var(--gap)));
}

.call-to-instagram {
    overflow: hidden;
    --gap: 1.5rem;
    --duration: 12s;
    text-decoration: none;
}

.call-to-instagram .scroll-text {
    padding: 1.5rem 0 1.5rem 0;
}

.call-to-instagram ul {
    color: white;
    gap: 0;
}

.call-to-instagram .instagram {
    font-family: 'PlayFair Display', serif;
    line-height: 2.48rem;
}

.call-to-instagram .instagram::before {
    content: "\00a0 ";
}

.call-to-instagram .instagram::after {
    content: "\00a0 ";
}

.instagram-carousel {
    display: flex;
}

.instagram-carousel img {
    width: 100vw;
}

@keyframes infiniteScrollToLeft {
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@keyframes infiniteScrollToRight {
    to {
        transform: translateX(0%);
    }
}

.main-footer {
    max-width: 1080px;
    margin: auto;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 10rem 0 5rem 0;
    font-size: 1.3rem;
}

.footer-top-row p {
    width: 23vw;
    margin: 0;
}

.footer-top-row-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    color: #A57AF5;
}

.link-mailto {
    margin-top: 0.2rem;
    font-weight: bold;
    color: #A57AF5;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.link-mailto::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #A57AF5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link-mailto:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2vh;
    font-size: 0.8rem;
}

.link-cgv {
color: white;
text-decoration: none;
}

.footer-name {
    padding: 1rem 0 2rem 0;
    border-top: 1px solid #EFEAE7;
}

.footer-name img {
    width: 100%;
}

.chip {
    border: 1.5px solid white;
    border-radius: 8px;
    padding: 0.4rem 0.8rem 0.4rem 0.8rem;
    margin-left: 0.8rem;
    font-weight: 350;
}

.chip--mini {
    border: 1.5px solid white;
    border-radius: 5px;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    margin-left: 0.4rem;
    font-size: 0.8rem;
    font-weight: 350;
}

.chip--filled {
    color: black;
    background-color: white;
}

.chip--inversed {
    border-color: black;
    color: black;
    background-color: white;
}

.chip--inversed-filled {
    border-color: black;
    color: white;
    background-color: black;
}

.link {
    color: inherit;
    font-family: 'Unbounded', sans-serif;
    font-weight: 200;
    text-decoration: none;
    margin-left: 3rem;
}

.--underlined {
    text-decoration: underline;
    text-decoration-thickness: 0.05rem;
    text-underline-offset: 0.2rem;
}

.--black {
    color: black;
}

.--no-scroll {
    overflow: hidden;
}

@media (max-width: 1080px) {
    h1 {
        font-family: 'Unbounded', sans-serif;
        font-size: 3rem;
        font-weight: 900;
        overflow: hidden;
    }

    h2 {
        font-family: 'Unbounded', sans-serif;
        font-size: 2rem;
        font-weight: 700;
    }

    h3 {
        font-family: 'Unbounded', sans-serif;
        font-size: unset;
        font-weight: 400;
    }

    h4 {
        font-family: 'Unbounded', sans-serif;
        font-size: 1.6rem;
    }

    h5 {
        font-family: 'Unbounded', serif;
        font-size: 1rem;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .--mobile {
        display: block;
    }

    .--desktop {
        display: none;
    }

    .smartphone-links {
        display: block;
    }

    .navbar .links {
        display: none;
    }

    .smartphone-menu {
        position: fixed;
        top: 0;
        bottom: 100vh;
        right: 0;
        left: 0;
        z-index: 2000;
        background-color: #A57AF5;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        overflow: hidden;
        transition: 0.5s ease-in-out;
    }

    .open-smartphone-menu {
        display: block;
    }

    .smartphone-menu--opened {
        bottom: 0;
    }

    .smartphone-menu a {
        font-weight: 400;
    }

    .close-smartphone-menu {
        position: absolute;
        top: 2rem;
        right: 1rem;
        transform: translateX(-50%);
        font-weight: bold;
    }

    .chip {
        padding: 0.2rem 0.4rem 0.2rem 0.4rem;
        font-size: 0.9rem;
        margin-left: 0.4rem;
    }

    .chip--mini {
        padding: 0.1rem 0.3rem 0.1rem 0.3rem;
        margin-left: 0.2rem;
        font-size: 0.7rem;
    }

    .scroll-text {
        font-size: 1rem;
    }

    .call-to-instagram .instagram {
        line-height: 1.3rem;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: start;
        padding: 4rem 2rem;
        font-size: 1rem;
    }

    .footer-top-row p {
        width: auto;
    }

    .footer-top-row-right {
        margin-top: 2rem;
        align-items: start;
    }

    .footer-bottom-row {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .footer-name {
        margin: 0 2rem;
    }

    .call-to-contact {
        padding: 6vh 2rem 12vh 2rem;
    }

    .call-to-contact p {
        font-size: 1.3rem;
    }
}