


@font-face {
    font-family: 'typo rect';
    src: url('fonts/ari_w9500/ari-w9500-condensed-display.ttf') format('truetype');
    font-weight: 1000;
    font-style: normal;
    font-display: swap;
}

.typo-rect {
    font-family: 'typo rect', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    cursor: pointer;
}

@font-face {
    font-family: 'typo rect2';
    src: url('fonts/pixel_digivolve/Pixel\ Digivolve.otf') format('truetype');
    font-weight: 2000;
    font-style: normal;
    font-display: swap;
}

.typo-rect2 {
    font-family: 'typo rect2', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: large;
}

@font-face {
    font-family: 'typo stretch';
    src: url('fonts/stretch_pro/StretchPro.otf') format('truetype');
    font-weight: 2000;
    font-style: normal;
    font-display: swap;
}

@keyframes fade-down {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.typo-stretch {
    font-family: 'typo stretch', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.loader {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}



body {
    margin: 0;
    padding: 0;
    
    background-color: #222;
    /* noir semi-transparent */
    background-blend-mode: multiply;
    /* mélange les deux */

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: 'Arista Pro', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

}

.fond {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}
.image-fond-wrapper::after{ 
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1); /* noir opaque */
}

.fond img.imgfond {
    z-index: -1;
    /* niveau inférieur */

    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    /* couvre tout le div sans déformation */
    display: block;
    /* supprime les espaces indésirables */
}

.nextevent {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    /* empile verticalement */
    justify-content: center;
    align-items: center;
    position: relative;
    /* crée un contexte de positionnement */
}

.partie {
    overflow: hidden;
    scroll-snap-align: start;
    /* chaque section s’aligne au début */

}

.shake {
    will-change: transform;
    transition: transform 0.1s ease;
    display: inline-block;
}


.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}


.logo.spinning {
    animation: spin 1s ease-in-out forwards;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.event-timer {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    width: 300px;
    margin: auto;
}

#countdown {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 2px;
}


.banner {
    cursor: pointer;
    width: 100vw;
    overflow: hidden;
    /* masque ce qui dépasse */
    background: #ffffff;
    color: #161616;
    padding: 10px 0;
}

.banner-bio {
    cursor: pointer;
    width: 100vw;
    overflow: hidden;
    /* masque ce qui dépasse */
    background: yellow;
    color: #161616;
    padding: 10px 0;
}

.scroll {
    display: inline-flex;
    /* les spans s’enchaînent */
    white-space: nowrap;
    animation: scroll-left 5s linear infinite;
}

.scroll span {
    display: inline-block;
    
    /* espace entre répétitions */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10%);
    }
}





.content {
    max-width: 60%;
    background-color: rgba(34, 34, 34, 0.767);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    padding: 10px;
    color: white;
}

.content-main {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* centre verticalement le contenu */
    align-items: center;
    /* centre horizontalement */
    flex-grow: 1;
    /* prend tout l’espace dispo */
    text-align: center;


}

.content-main h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 4px;

}

a {
  text-decoration: none;
}





/* Dropdown menu styling */
.logo-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.menu {
    top: 0;
    left: 0;
    width: 100%;
    
    border-radius: 0; /* optionnel, car fixé en haut */
    z-index: 1000; /* pour qu’il passe au-dessus du contenu */
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center; /* centré */
  margin: 0;
  padding: 0;
}



.menu a {
    display: block;
    padding: 12px 8vw;
    color: white;
    text-decoration: none;
    font-size: 16px;
    background-color: rgba(17, 17, 17, 0.116);
    border: 2px solid white;
}


.menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid yellow;

}


/* -------- ARTISTE CONTAINER NAMES --------- */

/* -------- CLASS --------- */

.artiste-main-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100dvh;
}

.artiste-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 200px;

}

.artiste-box {
    transform-style: preserve-3d;

    animation: animate 13s linear infinite;
    transform: translateZ(0);
    /* force GPU layer */

}

.artiste-box span {
    will-change: transform;
    text-transform: uppercase;
    line-height: 0.76em;
    position: absolute;
    color: #fff;
    font-size: 3.5em;
    white-space: nowrap;
    font-weight: bold;
    padding: 0px 10px;
    transform-style: preserve-3d;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scaleY(-1) rotateX(calc(var(--i) * (360deg/17))) translateZ(110px);
}

.artiste-box span i {
    font-style: initial;
    transition: color 0.3s ease;
    color: #fff;
    cursor: pointer;
    /* couleur par défaut */

    /* transition douce */
}

.artiste-box span i.hovered {
    color: yellow;
}

.artiste-box span i.hovered::before {
  content: ">";
  margin-right: 4px;
  color: yellow;
}

.artiste-box span i.hovered::after {
  content: "<";
  margin-left: 4px;
  
  color: yellow;
}





@keyframes animate {
    from {
        transform: translateZ(100px) rotateX(0deg);
    }

    to {
        transform: translateZ(100px) rotateX(360deg);
    }
}







/* ------------- FOOTER -------------  */

.footer {
    background: #000;
    padding: 7px;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: center; /* centre le contenu global */
    align-items: center;
    position: relative; /* permet de placer le contact à droite */
}

/* réseaux sociaux centrés */
.social-links {
    display: flex;
    gap: 30px;
}

/* contact collé à droite */
.contact {
    position: absolute;
    right: 20px; /* marge à droite */
    text-align: right;
}

.social {
    color: #fff;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social:hover {
    color: yellow;
}

.contact a {
    color: #fff;
    text-decoration: none;
}

.contact a:hover {
    color: yellow;
}













/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu a {
    padding: 12px ;
}
    .logo {
        display: none;
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .content-main h1 {
        font-size: 2rem;
        margin: 0;
        letter-spacing: 4px;

    }

    .content-main h2 {
        font-size: 1rem;
        margin: 10px;
        letter-spacing: 1px;

    }

    #countdown {
        font-size: 1.5rem;
        font-weight: bold;
        margin-top: 10px;
        letter-spacing: 2px;
    }

    .content {
        max-width: 85%;
        padding: 8px;
    }

    .image-event,
    .video-event {
        height: 100%;
        object-fit: cover;
        display: block;
        width: 80%;
    }

    .columns {
        flex-direction: column;
        gap: 10px;
    }

    .col-left {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .col-right {
        flex: 1;
    }

    .content h1 {
        font-size: 1.2rem;
    }

    .content h2 {
        font-size: 1rem;
    }

    .content p {
        font-size: 0.9rem;
    }
    .contact {
    visibility: hidden;
    }   
}

@media (max-width: 480px) {
    .menu a {
    padding: 12px ;
}
    .logo {
        width: 50px;
        height: 50px;
        top: 8px;
        left: 8px;
    }

    .content {
        max-width: 80%;
        padding: 6px;
    }

    .image-event,
    .video-event {
        height: 100%;
        max-width: 100%;
        width: 100%;
    }

    .col-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content h1 {
        font-size: 1rem;
    }

    .content h2 {
        font-size: 0.9rem;
    }

    .content p {
        font-size: 0.8rem;
    }
    .contact {
    visibility: hidden;
    }   
}