@import url("intro.css");
 
@font-face {
    font-family: "PP Neue Bit";
    src: url("fonts/PPNeueBit-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ========================================
   VARIABLES
======================================== */

:root {
    --content-width: 760px;
}


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
}

body {
    position: relative;

    width: 100%;
    min-height: 100%;

    background: #000;
    color: #fff;

    font-family: "PP Neue Bit", sans-serif;

    overflow-x: hidden;
}

body.menu-active {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ========================================
   BACKGROUND FIXE
======================================== */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    width: 100vw;

    height: 100vh;
    height: 100dvh;

    background-image: url("images/IMG02.jpg");
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;

    z-index: 0;

    pointer-events: none;
}


/* ========================================
   HEADER
======================================== */

.top {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 20px 22px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    z-index: 500;

    pointer-events: none;
}


/* ========================================
   MENU BUTTON
======================================== */

.menu-button {
    pointer-events: auto;

    border: none;
    padding: 0;

    background: transparent;
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    opacity: 0.42;

    transition: opacity 0.2s ease;
}

.menu-button:hover {
    opacity: 1;
}


/* ========================================
   ACCUEIL
======================================== */

body[data-home="true"] .menu-button {
    display: none;
}

body[data-home="true"] .menu {
    display: none !important;
}


/* ========================================
   CENTRE DU HEADER
======================================== */

.header-center {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 2px;

    z-index: 510;

    pointer-events: none;
}


/* ========================================
   LOGO PRATTSEUL
======================================== */

.site-logo {
    position: relative;

    display: block;

    width: 150px;

    pointer-events: auto;
}

.site-logo img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* ========================================
   TITRE PAGES INTERNES
======================================== */

.page-title {
    position: relative;

    color: #fff;

    font-size: 25px;
    line-height: 0.9;
    font-weight: 700;

    white-space: nowrap;

    pointer-events: auto;
}

body[data-home="true"] .page-title {
    display: none !important;
}


/* ========================================
   RÉSEAUX SOCIAUX
======================================== */

.social-links {
    pointer-events: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: #fff;

    margin-left: auto;
}

.social-links a {
    display: flex;

    width: 28px;
    height: 28px;

    align-items: center;
    justify-content: center;

    color: #fff;

    opacity: 0.42;

    transition: opacity 0.2s ease;
}

.social-links:hover a {
    opacity: 0.22;
}

.social-links a:hover {
    opacity: 1;
}

.social-links svg {
    display: block;

    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links svg .filled {
    fill: currentColor;
    stroke: none;
}

.social-links img {
    display: block;

    width: 28px;
    height: 28px;

    object-fit: contain;
}


/* ========================================
   MENU COULISSANT
======================================== */

.menu {
    position: fixed;

    top: 0;
    left: 0;

    width: min(420px, 85vw);

    height: 100vh;
    height: 100dvh;

    z-index: 1000;

    background: transparent;

    padding: 20px 22px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        background-color 0.25s ease;
}

.menu.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* ========================================
   FERMER
======================================== */

.close-button {
    position: absolute;

    top: 20px;
    right: 22px;

    border: none;
    padding: 0;

    background: transparent;
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    opacity: 0.42;

    transition: opacity 0.2s ease;
}

.close-button:hover {
    opacity: 1;
}


/* ========================================
   MENU INTERNE
======================================== */

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin-top: 75px;
}

.menu-list a {
    color: #fff;

    font-size: clamp(42px, 6.5vw, 100px);
    line-height: 0.92;

    letter-spacing: -0.045em;

    opacity: 0.42;

    transition: opacity 0.2s ease;
}

.menu-list:hover a {
    opacity: 0.22;
}

.menu-list a:hover {
    opacity: 1;
}


/* ========================================
   MENU ÉCRANS ÉTROITS
======================================== */

@media (max-width: 900px) {

    .menu {
        background: rgba(0, 0, 0, 0.92);

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

}


/* ========================================
   COPYRIGHT
======================================== */

.site-copyright {
    position: fixed;

    right: 22px;
    bottom: 18px;

    z-index: 500;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
    line-height: 1;

    white-space: nowrap;

    pointer-events: none;
}

.site-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 3px;
}


.background-credit {
    font-size: 0.85em;

    opacity: 0.62;
}


/* ========================================
   ACCUEIL
======================================== */

.hero {
    position: relative;

    z-index: 1;

    width: 100%;

    height: 100vh;
    height: 100dvh;

    overflow: hidden;
}


/* ========================================
   MENU PERMANENT ACCUEIL
======================================== */

.home-menu {
    position: absolute;

    top: 50%;
    left: 22px;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    z-index: 20;
}

.home-menu a {
    color: #fff;

    font-size: clamp(42px, 5.5vw, 82px);
    line-height: 0.88;

    letter-spacing: -0.045em;

    opacity: 0.42;

    transition: opacity 0.2s ease;
}

.home-menu:hover a {
    opacity: 0.22;
}

.home-menu a:hover {
    opacity: 1;
}


/* ========================================
   GIF ACCUEIL
======================================== */

.welcome-gif {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: block;

    width: min(500px, 45vw);
    height: auto;

    z-index: 10;

    pointer-events: none;
}


/* ========================================
   PAGES INTERNES
======================================== */

.internal-content {
    position: relative;

    z-index: 1;

    width: 100%;
    min-height: 100vh;

    padding: 145px 0 100px;

    display: flex;
    justify-content: center;
}


/* ========================================
   LARGEUR COMMUNE
======================================== */

.about-content,
.videos-content,
.shows-content,
.contact-content,
.page-content {
    width: min(var(--content-width), calc(100% - 80px));

    min-width: 600px;
}


/* ========================================
   JUSTIFICATION
======================================== */

.internal-content p {
    text-align: justify;
    text-justify: inter-word;
}


/* ========================================
   À PROPOS
======================================== */

.about-content {
    display: flex;
    flex-direction: column;

    gap: 40px;

    padding: 25px 45px 50px;

    background: transparent;

    border: none;
    box-shadow: none;
}

.bio-title {
    margin: 0;

    color: #fff;

    font-size: clamp(27px, 2.1vw, 36px);
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.015em;
}

.about-text {
    width: 100%;
}

.about-text p {
    margin-bottom: 24px;

    color: #fff;

    font-size: clamp(21px, 1.55vw, 27px);
    line-height: 1.25;

    letter-spacing: -0.008em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 700;
}

.about-text em {
    font-style: italic;
}

.about-text h2 {
    margin: 0 0 20px;

    color: #fff;

    font-size: clamp(26px, 2vw, 34px);
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.015em;
}


/* ========================================
   PHOTOS À PROPOS
======================================== */

.about-photo {
    margin: 0;
}

.about-photo img {
    display: block;

    width: 100%;

    object-fit: cover;
}


/* ========================================
   PHOTO PRINCIPALE
   PLUS PETITE + CROP PAR LE HAUT
======================================== */

.about-photo-main {
    width: 58%;

    align-self: center;
}

.about-photo-main img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    /*
       On conserve le bas de la photo
       et on rogne prioritairement le haut.
    */
    object-position: center bottom;
}


/* ========================================
   IMG01
   CINÉMASCOPE 2.35:1
======================================== */

.about-photo-secondary {
    width: 100%;
}

.about-photo-secondary img {
    width: 100%;

    aspect-ratio: 2.35 / 1;

    object-fit: cover;

    /*
       Cadrage complètement descendu :
       on conserve les pieds + une marge
       sous le personnage.
    */
    object-position: center bottom;
}


/* ========================================
   CRÉDITS PHOTO
======================================== */

.about-photo figcaption {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1;

    text-align: right;
}


/* ========================================
   CRÉDIT BIO
======================================== */

.bio-credit {
    margin-top: -10px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;
    line-height: 1.2;

    text-align: right;
}


/* ========================================
   DISCOGRAPHIE
======================================== */

.discography {
    width: 100%;
}

.discography-title {
    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(28px, 2.2vw, 36px);
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.015em;
}

.discography-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.discography-item {
    min-width: 0;
}

.discography-cover {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.discography-info {
    padding-top: 10px;
}

.discography-year {
    color: rgba(255, 255, 255, 0.68);

    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1;

    font-weight: 700;
}

.discography-name {
    margin-top: 4px;

    color: #fff;

    font-size: clamp(19px, 1.35vw, 23px);
    line-height: 1;

    font-weight: 700;
}

.discography-label {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.76);

    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.1;

    font-weight: 700;
}


/* ========================================
   VIDÉOS
======================================== */

.videos-content {
    display: flex;
    flex-direction: column;

    gap: 55px;

    padding: 20px 45px 45px;
}

.video-project {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.video-project-title {
    margin: 0;

    color: #fff;

    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.02em;
}

.video-project-title span {
    display: inline-block;

    margin-left: 8px;

    font-size: 0.65em;

    opacity: 0.7;
}

.video-item {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.video-item h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(22px, 1.7vw, 29px);
    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -0.01em;
}

.video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;
}

.video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ========================================
   CONCERTS
======================================== */

.shows-content {
    display: flex;
    flex-direction: column;

    gap: 42px;

    padding: 10px 35px 40px;
}

.shows-gif {
    width: 100%;

    margin-bottom: 24px;

    overflow: hidden;
}

.shows-gif img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

.shows-year {
    width: 100%;
}

.shows-year-title {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(34px, 3vw, 48px);
    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -0.02em;
}

.shows-list {
    width: 100%;

    border-top:
        1px solid rgba(255, 255, 255, 0.35);
}

.show-item {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(100px, 0.75fr)
        minmax(140px, 1.15fr)
        minmax(180px, 1.55fr)
        auto;

    column-gap: 14px;

    align-items: start;

    padding: 10px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.35);

    color: #fff;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}

.show-item.past {
    opacity: 0.42;
}

.show-date {
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1;

    font-weight: 700;

    white-space: nowrap;
}

.show-location {
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1;

    font-weight: 700;
}

.show-info {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.show-venue {
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1;

    font-weight: 700;
}

.show-meta {
    color: rgba(255, 255, 255, 0.72);

    font-size: clamp(14px, 1vw, 17px);
    line-height: 1;

    font-weight: 700;
}

.show-ticket {
    align-self: start;

    color: #fff;

    font-size: clamp(15px, 1vw, 18px);
    line-height: 1;

    font-weight: 700;

    text-decoration: underline;

    text-underline-offset: 4px;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.show-ticket:hover {
    opacity: 0.5;
}


/* ========================================
   PRESSE
======================================== */

.press-content {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 5px 35px 35px;
}

.press-year {
    width: 100%;
}

.press-year-title {
    display: none;
}

.press-list {
    width: 100%;

    border-top: none;
}

.press-content .press-year:first-child .press-list {
    border-top:
        1px solid rgba(255, 255, 255, 0.35);
}

.press-item {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(95px, 0.65fr)
        minmax(140px, 1fr)
        minmax(0, 2.5fr);

    column-gap: 14px;

    align-items: start;

    padding: 7px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.3);

    color: #fff;
}

.press-item-link {
    cursor: pointer;

    color: #fff;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.press-item-link .press-date,
.press-item-link .press-media,
.press-item-link .press-title {
    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;

    text-decoration-skip-ink: auto;
}

.press-item-link:hover {
    opacity: 0.5;
}

.press-item-no-link {
    cursor: default;
}

.press-item-no-link .press-date,
.press-item-no-link .press-media,
.press-item-no-link .press-title {
    text-decoration: none;
}

.press-date {
    color: inherit;

    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1;

    font-weight: 700;

    white-space: nowrap;
}

.press-media {
    color: inherit;

    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1;

    font-weight: 700;
}

.press-title {
    color: inherit;

    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.05;

    font-weight: 700;
}

.press-title-no-link {
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 701px) {

    .press-title {
        text-align: justify;
        text-justify: inter-word;
    }

}


/* ========================================
   CONTACTS
======================================== */

.contact-content {
    padding: 10px 35px 35px;
}

.contact-list {
    width: 100%;

    border-top:
        1px solid rgba(255, 255, 255, 0.35);
}

.contact-item {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(150px, 0.9fr)
        minmax(220px, 1.35fr)
        minmax(0, 1.75fr);

    column-gap: 24px;

    align-items: start;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.3);
}

.contact-role {
    color: rgba(255, 255, 255, 0.65);

    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.05;

    font-weight: 700;
}

.contact-name {
    color: #fff;

    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.05;

    font-weight: 700;
}

.contact-link {
    color: #fff;

    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.05;

    font-weight: 700;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.5;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    body::before {
        width: 100vw;

        height: 100vh;
        height: 100dvh;

        background-size: cover;

        background-position: center 75%;
    }


    /* HEADER */

    .top {
        padding: 17px 18px;
    }

    .menu-button {
        font-size: 25px;
    }


    /* LOGO + TITRE */

    .header-center {
        top: 16px;

        gap: 2px;
    }

    .site-logo {
        width: 125px;
    }

    .site-logo img {
        width: 100%;

        max-width: none;
    }

    .page-title {
        font-size: 21px;
    }


    /* RÉSEAUX */

    .social-links {
        gap: 10px;

        margin-left: auto;
    }

    .social-links a,
    .social-links svg,
    .social-links img {
        width: 25px;
        height: 25px;
    }


    /* MENU */

    .menu {
        width: min(320px, 85vw);

        height: 100vh;
        height: 100dvh;

        padding: 17px 18px;

        background: rgba(0, 0, 0, 0.92);

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .close-button {
        top: 17px;
        right: 18px;

        font-size: 25px;
    }

    .menu-list {
        margin-top: 65px;
    }

    .menu-list a {
        font-size: 45px;
    }


    /* COPYRIGHT */

    .site-copyright {
        right: 18px;
        bottom: 14px;

        font-size: 13px;
    }


    /* MENU ACCUEIL */

    .home-menu {
        top: 50%;
        left: 18px;

        transform: translateY(-50%);
    }

    .home-menu a {
        font-size: clamp(38px, 12vw, 54px);

        line-height: 0.9;

        opacity: 0.42;
    }


    /* GIF ACCUEIL */

    .welcome-gif {
        width: min(360px, 75vw);
    }


    /* PAGE INTERNE */

    .internal-content {
        padding: 120px 0 70px;
    }


    /* LARGEUR COMMUNE */

    .about-content,
    .videos-content,
    .shows-content,
    .contact-content,
    .page-content {
        width: calc(100% - 36px);

        min-width: 0;
    }


    /* TEXTES */

    .internal-content p {
        text-align: justify;

        text-justify: inter-word;

        hyphens: auto;
    }


    /* ========================================
       À PROPOS MOBILE
    ========================================= */

    .about-content {
        gap: 30px;

        padding: 18px 22px 34px;
    }

    .bio-title {
        font-size: 26px;
    }

    .about-text p {
        margin-bottom: 20px;

        font-size: 19px;
        line-height: 1.25;
    }

    .about-text h2 {
        margin-bottom: 20px;

        font-size: 27px;
    }


    /* PHOTO PRINCIPALE MOBILE */

    .about-photo-main {
        width: 66%;
    }

    .about-photo-main img {
        aspect-ratio: 4 / 5;

        object-position: center bottom;
    }


    /* IMG01 MOBILE */

    .about-photo-secondary {
        width: 100%;
    }

    .about-photo-secondary img {
        aspect-ratio: 2.35 / 1;

        object-position: center bottom;
    }


    .about-photo figcaption {
        margin-top: 6px;

        font-size: 13px;
    }

    .bio-credit {
        margin-top: -6px;

        font-size: 14px;
    }


    /* DISCOGRAPHIE */

    .discography-title {
        margin-bottom: 18px;

        font-size: 28px;
    }

    .discography-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .discography-info {
        padding-top: 8px;
    }

    .discography-year {
        font-size: 14px;
    }

    .discography-name {
        font-size: 22px;
    }

    .discography-label {
        font-size: 16px;
    }


    /* VIDÉOS */

    .videos-content {
        gap: 45px;

        padding: 15px 0 30px;
    }

    .video-project {
        gap: 20px;
    }

    .video-project-title {
        font-size: 30px;
    }

    .video-project-title span {
        margin-left: 5px;
    }

    .video-item {
        gap: 6px;
    }

    .video-item h2 {
        font-size: 21px;
    }


    /* CONCERTS */

    .shows-content {
        gap: 32px;

        padding: 10px 0 30px;
    }

    .shows-gif {
        margin-bottom: 16px;
    }

    .shows-year-title {
        margin-bottom: 9px;

        font-size: 32px;
        line-height: 0.95;
    }

    .show-item {
        display: flex;

        flex-direction: column;

        gap: 2px;

        padding: 9px 0;
    }

    .show-date {
        font-size: 20px;
        line-height: 1;
    }

    .show-location {
        font-size: 20px;
        line-height: 1;
    }

    .show-venue {
        font-size: 18px;
        line-height: 1;
    }

    .show-meta {
        margin-top: 1px;

        font-size: 15px;
        line-height: 1;
    }

    .show-ticket {
        margin-top: 5px;

        font-size: 16px;

        text-underline-offset: 3px;
    }


    /* PRESSE */

    .press-content {
        gap: 0;

        padding: 5px 0 25px;
    }

    .press-item {
        display: flex;
        flex-direction: column;

        gap: 1px;

        padding: 7px 0;
    }

    .press-date {
        font-size: 14px;
        line-height: 1;
    }

    .press-media {
        font-size: 18px;
        line-height: 1;
    }

    .press-title {
        margin-top: 1px;

        font-size: 17px;
        line-height: 1.05;

        text-align: left;
    }


    /* CONTACTS */

    .contact-content {
        padding: 5px 0 25px;
    }

    .contact-item {
        display: flex;
        flex-direction: column;

        gap: 2px;

        padding: 12px 0;
    }

    .contact-role {
        font-size: 15px;
        line-height: 1;
    }

    .contact-name {
        font-size: 19px;
        line-height: 1.05;
    }

    .contact-link {
        margin-top: 3px;

        font-size: 17px;
        line-height: 1.05;

        text-underline-offset: 3px;

        overflow-wrap: anywhere;
    }

}
