/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #0e0e0e;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Désactiver le défilement horizontal */
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #1f1f1f;
    position: relative;
    z-index: 10; /* Assurez-vous que le header est au-dessus du contenu */
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 20; /* Assurez-vous que le burger est au-dessus du menu déroulant */
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #a259ff;
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .burger {
        display: block;
        position: relative; /* Assurez-vous que le burger est positionné correctement */
        z-index: 20; /* Assurez-vous que le burger est au-dessus du menu déroulant */
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgba(0, 0, 0, 0.9); /* Fond sombre avec transparence */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre portée */
        z-index: 15; /* Assurez-vous que le menu déroulant est en dessous du burger */
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.1s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.3s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.5s;
    }

    .nav-links li a {
        font-size: 2rem;
    }

    .btn-live {
        display: none;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #a259ff;
}

.btn-live {
    background: #a259ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-live:hover {
    background: #6e33c7;
}

/* HERO */
.hero {
    background: url('background.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-main {
    background: #a259ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-main:hover {
    background: #6e33c7;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ABOUT */
.about {
    padding: 80px 20px;
    text-align: center;
    background: #151515;
}

.about-content {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content img {
        width: 100px;
        height: 100px;
    }
}

/* PLANNING */
.planning {
    padding: 80px 20px;
    text-align: center;
}

.planning ul {
    list-style: none;
    margin-top: 30px;
}

.planning ul li {
    margin: 10px 0;
    font-size: 1.2rem;
}

/* CLIPS */
.clips {
    padding: 80px 20px;
    background: #151515;
    text-align: center;
}

.clips-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.clips iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .clips iframe {
        height: 200px;
    }
}

/* SOCIALS */
.socials {
    padding: 80px 20px;
    text-align: center;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 10px;
    display: inline-block;
    background: #a259ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #6e33c7;
}

/* REVEAL Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
footer {
    background: #1f1f1f;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #888;
}
