/* Import des polices */
    @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');
    
    /*Police 'Mael'*/
    @font-face {
        font-family: "Mael";
        src: url("fonts/mael.ttf") format("truetype");
    }

/* Style général */
    body {
        background-color: #000000;
        color: #e0e0e0;
        font-family: 'VT323', monospace;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

/*Effet curseur "lampe torche"*/
.torch {
  position: fixed;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,0,0,0.4) 0%, rgba(0,0,0,0) 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: lighten; 
  z-index: 9999;
}
    /*Désactiver l'effet torche pour les appareils tactiles*/
    @media (hover: none) and (pointer: coarse) {
        .torch {
            display: none;
        }
    }



/*   HEADER   */

    header {
        position: relative;
        height: 100vh;
        background: url('src/background.webp') center center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Wrap logo + epk */
    .logosuperpose {
        position: relative;
        display: inline-block;
    }

    /* Logo 'DJ NightSlayer' */
    .logosuperpose img {
        max-width: 500px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 0 5px #870000);
    }

    /* EPK en bas à droite */
    .epk {
        position: absolute;
        bottom: -25%;
        right: 10%;
        transform: translate(30%, 30%);
    }
    .epk img {
        max-width: 100px;
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 0 5px #000000);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .logosuperpose img {
            max-width: 85%;
        }
            .epk img {
                max-width: 30%;
                right: 50%;
            }
        }

        /* Hover */
        .logosuperpose img:hover {
            transform: scale(1.03);
            filter: drop-shadow(0 0 5px #ff0000);
        }
        .epk img:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 0 10px #3e3e3e);
        }

        /* Bouton scroll */
            .scroll-button {
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .scroll-button img {
                width: 60%;
                height: 60%;
                object-fit: contain;
                /*Image transformée en rouge en utilisant des filtres*/
                filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7461%) hue-rotate(357deg) brightness(70%) contrast(105%);
            }

            .scroll-button:hover {
                transform: translateX(-50%) scale(1.2);
                filter: drop-shadow(0 0 10px #ff0000);
            }

            /* Smooth scroll */
            html {
                scroll-behavior: smooth;
            }

    /* Boutons langue */
        .lang-switch {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10000;
            }
        .lang-switch img {
            width: 30px;
            height: 30px;
            padding: 10px;
            object-fit: contain;
            filter: drop-shadow(0 0 3px #000000);
            transition: transform 0.2s ease, filter 0.2s ease;
        }
        .lang-switch button {
        border: none;
        font-family: 'VT323', monospace;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        background: transparent;
        padding: 5px;

        }
        .lang-switch a:hover img {
            transform: scale(1.4);
            filter: drop-shadow(0 0 10px #ff0000);

        }
        .lang-switch a:active img {
            transform: scale(1.2);
        }





/*   MAIN   */

    .contenu {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    b {
        color: #ff0000;
        font-weight: bold;
    }
    i {
        color: #919191;
        text-decoration: italic;
    }

    b i {
        color: #ff0000;
        text-decoration: italic;
    }

/*Liste bio*/
    .bio ul {
            list-style: none;
            padding: 0;
            text-align: left;
            font-size: 1.5rem;
            line-height: 1.;
            letter-spacing: 0.01em;
        }

    .bio ul li {
        margin-bottom: 1.5em;
    }
    
    /*Points personnalisés*/
    .bio ul li::before {
        content: "• ";
        color: #ff0000;
        font-size: 1.5em;
        vertical-align: middle;
    }


/*Section Liens*/
    .links {
            margin-top: 50px;
        }

    h2 {
        color: #ff0000;
        font-family: "Mael";
        font-size: clamp(1.5rem, 5vw, 3rem); /*Taille adaptative*/
        letter-spacing: 3px;
        text-shadow: 0 0 5px #ff0000;
        margin-bottom: 5%;
        margin-top: 10%;
        max-width: 90%;
        margin: 10% auto 5% auto;
        text-align: center;
    }
    .links nav {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .links nav a {
        display: inline-flex;
        align-items: center;
        color: #e0e0e0;
        text-decoration: none;
        font-family: 'VT323', monospace;
        font-size: 1.5rem;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    .links nav a:hover {
        color: #ff0000;
        text-shadow: 0 0 8px #ff0000;
    }

    .logolinks {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        object-fit: contain;
        filter: drop-shadow(0 0 3px #000000);
    }



/*Section performances*/
    .performances-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 20px;
        align-items: center;
    }

    .performance-item iframe {
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 0 10px rgb(255, 0, 0);
        vertical-align: middle;
    }

    /* Responsive : une seule colonne sur mobile */
    @media (max-width: 768px) {
        .performances-grid {
            grid-template-columns: 1fr;
        }
    }


/* FOOTER */
footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(21, 21, 21, 1) 50%, rgba(21, 21, 21, 1) 100%);
  color: #e0e0e0;
  font-family: 'VT323', monospace;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

footer p {
  margin: 10px auto;
  line-height: 1.4;
  font-size: clamp(0.8rem, 2vw, 1rem);
  max-width: 95%;
}

.credits {
  display: block;
  margin-top: 5px;
  color: #c00000;
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
}

    /* Footer responsive */
        @media (max-width: 600px) {
        footer {
            padding: 15px 8px;
        }

        footer p {
            font-size: 0.9rem;
        }

        .credits {
            margin-top: 8px;
            font-size: 0.8rem;
        }
        }
/*Image du footer*/
    .footer-image {
        width: 100%;
        text-align: center;
        margin: 50px auto 0 auto;
        overflow: hidden;
    }

    .footer-image img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }




/*Effet de particules*/
#particules {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
}
/*Effet de scroll particules (ne restent pas immobiles)*/
.layer {
    position: relative;
    will-change: transform;
    transition: transform 0.1s linear;
    }
