/* --- fonts --- */
@font-face {
    font-family: 'andalemo-mono';
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/ANDALEMO.TTF") format('truetype');
}

@font-face {
    font-family: 'generation-mono';
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/generation-mono.otf") format('opentype');
}

@font-face {
    font-family: 'hanson';
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Hanson-Bold.ttf") format('truetype');
}

/* --- general --- */
:root {
    --vh: 1vh;
}

body {
    padding-top: 100vh;
    padding-top: calc(var(--vh, 1vh) * 100);
    margin: 0;
    color: #000;
    /* font */
    font-family: "andalemo-mono";
    font-size: 16px;
    line-height: 1.75em;
}

h1,
h2 {
    margin: 0;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

audio {
    display: none !important;
}

.mobile-show {
    display: none;
}

@media screen and (max-width: 576px) {
    body {
        font-size: 10px;
    }

    .mobile-hide {
        display: none;
    }

    .mobile-show {
        display: inline;
    }
}

/* --- header --- */
header {
    color: white;
    background-color: #CE78C7;
    background-image: url('../img/header_background_printemps.webp');
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-brands-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 150px;
}

.header-brands-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-brands-container>span {
    /* font */
    font-family: 'generation-mono', monospace;
    font-size: 1.575em;
    line-height: 1.35em;
    text-transform: uppercase;
}

.header-brands-container .brands-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header-brands-container .brands-container .brands {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-description {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-description h1 {
    margin: 0;
    text-shadow: 0px 0px 30px #000;
    text-align: center;
    text-transform: uppercase;
    /* font */
    font-family: 'hanson', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.75em;
}

.header-description p {
    margin: 0;
    text-shadow: 0px 0px 30px #000;
    text-align: center;
    /* font */
    font-size: 1.25em;
    line-height: 1.75em;
}

.scroll-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
}

.scroll-container>img {
    padding-right: 70px;
}

.scroll-container .scroll {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.scroll-container .scroll .bar {
    width: 1px;
    height: 85px;
    background-color: white;
}

.scroll-container .scroll a {
    color: white;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    /* font */
    font-size: 0.875em;
    line-height: normal;
    letter-spacing: 1.4px;
}

.scroll-container .world-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.scroll-container .world-container span {
    /* font */
    font-family: 'generation-mono', monospace;
    font-size: 1.575em;
    line-height: 1.35em;
    text-transform: uppercase;
}

@media screen and (max-width: 576px) {
    header {
        padding: 20px 10px;
    }

    .header-brands-container .brands-container {
        gap: 10px;
    }

    .header-brands-container .brands-container>a img {
        max-width: 325px;
    }

    .header-brands-container .brands-container .brands {
        flex-wrap: wrap;
    }

    .header-brands-container .brands-container .brands img {
        max-width: 80px;
        gap: 5px;
    }

    .header-brands-container .brands-container .brands img.vertical {
        max-height: 25px;
        width: auto;
    }

    .header-description {
        gap: 10px;
    }

    .scroll-container>img {
        width: 45px;
        padding-right: 0;
    }

    .scroll-container .world-container img {
        width: 45px;
    }

    .scroll-container .scroll .bar {
        height: 75px;
    }

    .scroll-container .world-container {
        gap: 10px;
    }

    .scroll-container .world-container span {
        font-size: 0.95em;
        line-height: normal;
    }
}

/* --- main --- */
main {
    background-color: white;
    position: relative;
    z-index: 10;
}

main .container {
    max-width: 945px;
    margin: 0 auto;
    padding: 195px 0 140px 0;
}

.ia-container .ia-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 26px;
}

.ia-container .ia-title-container h2 {
    /* font */
    font-size: 1em;
    font-weight: 400;
    line-height: 1.75em;
}

.ia-container svg #platine_vinyle {
    transform-origin: 387.5px 383.5px;
    animation: spin 5s linear infinite;
    animation-play-state: paused;
}

.ia-container svg #platine_arm {
    transform-origin: 783px 180px;
    transform: rotate(-33deg);
    transition: transform 4s linear;
}

.ia-container svg #platine_load {
    pointer-events: none;
    transform-origin: 94.86px 687.86px;
    animation: spin 1.5s linear infinite;
}

.ia-container svg #platine_play,
.ia-container svg #platine_stop {
    cursor: pointer;
}

.ia-container svg #platine_load,
.ia-container svg #platine_stop {
    display: none;
}

.ia-container svg #platine_arm.play {
    transform: rotate(8.8deg);
}

.spotify-container {
    margin-bottom: 110px;
}

.spotify-container h2 {
    margin-bottom: 26px;
    /* font */
    font-size: 1em;
    font-weight: 400;
    line-height: 1.75em;
}

.spotify-container .TrackListWidget_widgetContainer__VVETD {
    border-radius: 0 !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- footer --- */
footer {
    position: relative;
    z-index: 10;
    background-color: #2E2E2E;
}

.socials-container {
    max-width: 945px;
    margin: 0 auto;
    padding: 35px 22px 30px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.socials-container .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 7.5px;
}


.socials-container a {
    display: flex;
}


footer .brands-container {
    background-color: #242424;
}

footer .brands-container .brands {
    max-width: 945px;
    margin: 0 auto;
    padding: 16.5px 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}

footer .brands-container .brands a {
    display: flex;
}

/* --- responsive --- */

@media screen and (max-width: 1080px) {
    main .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .ia-container .ia-title-container {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ia-container .ia-title-container img {
        margin-left: auto;
    }

    .socials-container,
    footer .brands-container .brands {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 576px) {
    main .container {
        padding: 75px 20px;
    }

    .socials-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 95px 20px 42px 20px;
    }

    footer .brands-container .brands {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16.5px 20px;
    }
}