@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Light.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Thin.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-Italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-LightItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("font/Roboto-ThinItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

:root {
    --jaune: #FDC217;
    --saumon: #EA593C;
    --rose: #C8143D;
    --pourpre: #911443;
}

/* UTILS */
.full-height-section {
    min-height: 100dvh;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* PAGE */

body, html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Roboto';
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#artists,
#labels,
#contact {
    scroll-behavior: smooth;
}
.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: #000;
    padding-top: 10px;
}
.nav-link {
    flex: 1 1 auto;
    color: #fff;
    padding-bottom: 10px;
    text-align: center;
    text-underline-offset: 5px;
    font-style: italic;
    text-shadow: 1px 1px 2px #000;
}
.nav-link:first-child {
    text-decoration-color: var(--jaune)
}
.nav-link:nth-child(2) {
    text-decoration-color: var(--saumon)
}
.nav-link:last-child {
    text-decoration-color: var(--rose)
}


.main-logo {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.title-group {
    width: 100%;
    text-align: center;
}
h1.intro-text {
    font-style: italic;
}
.intro-text {
    font-weight: 500;
    font-size: .8em;
    display: inline;
}

#artists-categories,
#labels-categories {
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 6vw;
    font-style: italic;
    font-weight: 500;
    padding: 0;
    margin: 0 0 15px;
    gap: 10px;
    flex-wrap: wrap;
}

#artists-categories li, #labels-categories li {
    padding: 5px;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

#artists-categories .type-pr, #labels-categories .type-pr {
    color: var(--jaune);
    border: 1px solid var(--jaune);
}
#artists-categories .type-management {
    color: var(--rose);
    border: 1px solid var(--rose);
}
#artists-categories .type-publishing {
    color: var(--saumon);
    border: 1px solid var(--saumon);
}
#artists-categories .type-label {
    color: var(--pourpre);
    border: 1px solid var(--pourpre);
}

#artists-categories.type-pr .type-pr, #artists-categories .type-pr:hover {
    background-color: var(--jaune);
    color: #000;
}
#artists-categories.type-management .type-management, #artists-categories .type-management:hover {
    background-color: var(--rose);
    color: #000;
}
#artists-categories.type-publishing .type-publishing, #artists-categories .type-publishing:hover {
    background-color: var(--saumon);
    color: #000;
}
#artists-categories.type-label .type-label, #artists-categories .type-label:hover {
    background-color: var(--pourpre);
    color: #000;
}

#artists-list {
    padding: 0;
    list-style: none;
    width: 100%;
    font-weight: 500;
    font-size: 4.3vw;
    letter-spacing: -1px;
    text-align: center;
}

#artists-list li {
    display: inline; 
    text-align: center; 
    cursor: default;
    transition: color .2s ease-in-out;
    text-transform: none;
    white-space: nowrap;
}

#artists-list li::after {
  content: " ";
  word-spacing: 1em;
  background: radial-gradient(circle, rgba(255,255,255,1) 20%, rgba(0,0,0,1) 20%);
  padding: -5px;
}

#artists-list .type-pr:hover, #artists-list.type-pr .type-pr {
    color: var(--jaune);
}
#artists-list .type-management:hover, #artists-list.type-management .type-management {
    color: var(--rose);
}
#artists-list .type-publishing:hover, #artists-list.type-publishing .type-publishing {
    color: var(--saumon);
}
#artists-list .type-label:hover, #artists-list.type-label .type-label {
    color: var(--pourpre);
}

#labels-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 15px;
}

#labels-list img {
    width: 20%;
    height: auto;
}

#contact.full-height-section {
    justify-content: flex-start;
}

#contact #labels-categories,
#contact .contact-text {
    margin-bottom: 35vh;
    text-align: center;
}

.contact-text a {
    color: #fff;
    font-style: italic;
}

.socials {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#artists-categories li {
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .main-logo {
        width: 45%;
    }
    .intro-text {
        font-size: 1em;
    }

    #artists-categories,
    #labels-categories {
        font-size: 2vw;
    }

    #artists-list {
        font-size: 2.2vw;
    }

    #labels-list img {
        width: 8%;
        height: auto;
        margin: 5px;
    }

    .contact-text {
        margin-bottom: 25vh;
    }
}

  


