/* RESET GÉNÉRAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: white;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    color: #f5a623;
}

/* SECTION ACCUEIL */
.hero {
    text-align: center;
    padding: 150px 20px;
    background: linear-gradient(to bottom, #1a1a2e, #0a0a0a);
    overflow: hidden;
    position: relative;
}

.hero-content {
    margin-bottom: 20px;
}

.hero-image {
    width: 750px;
    height: 750px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    mask-image: radial-gradient(circle, black 30%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 65%);
    z-index: 0;
    opacity: 0.4;
}



.hero h1 {
    font-size: 48px;
    color: #f5a623;
    font-family: 'Righteous', sans-serif;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bouton {
    background-color: #f5a623;
    color: black;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.bouton:hover {
    background-color: #e0941f;
}

/* SECTION TRACKS */
.tracks {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #0a0a0a;
}

.tracks h2 {
    font-size: 36px;
    color: #f5a623;
    margin-bottom: 50px;
}

.tracks-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.track-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    border: 2px solid #222;
}

.track-card:hover {
    border-color: #f5a623;
}

.track-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.track-card p {
    color: #aaa;
    margin-bottom: 15px;
}

.prix {
    font-size: 24px;
    color: #f5a623 !important;
    font-weight: bold;
}

.bouton-achat {
    display: inline-block;
    background-color: #f5a623;
    color: black;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.bouton-achat:hover {
    background-color: #e0941f;
}

/* SECTION À PROPOS */
.about {
    padding: 80px 40px;
    text-align: center;
    background-color: #111;
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 36px;
    color: #f5a623;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
}

.bouton-youtube {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.bouton-youtube:hover {
    background-color: #cc0000;
}

/* SECTION CONTACT */
.contact {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #0a0a0a;
}

.contact h2 {
    font-size: 36px;
    color: #f5a623;
    margin-bottom: 30px;
}

.contact p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 15px;
}

/* PIED DE PAGE */
footer {
    text-align: center;
    padding: 30px;
    background-color: #111;
    color: #666;
    position: relative;
    z-index: 2;
}

/* LECTEUR AUDIO */
audio {
    width: 100%;
    margin: 15px 0;
}
/* VIDEO YOUTUBE */
.video-container {
    max-width: 250px;
    margin: 30px auto;
    position: relative;
    display: block;
    text-align: center;
}
.video-thumbnail {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    border: 2px solid #222;
    display: block;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 2px solid #222;
}
/* LOGO YOUTUBE */
.youtube-logo {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.youtube-logo:hover {
    opacity: 0.7;
}
/* RÉSEAUX SOCIAUX */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.3);
}

/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav ul {
        gap: 15px;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero-image {
        width: 450px;
        height: 450px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .tracks {
        padding: 40px 15px;
    }

    .tracks h2 {
        font-size: 28px;
    }

    .tracks-grid {
        flex-direction: column;
        align-items: center;
    }

    .track-card {
        width: 90%;
        max-width: 350px;
    }

    .about, .contact {
        padding: 40px 15px;
    }

    .about h2, .contact h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .hero-image {
        width: 350px;
        height: 350px;
    }

    .hero p {
        font-size: 16px;
    }

    .bouton {
        font-size: 16px;
        padding: 12px 24px;
    }

    .track-card {
        width: 95%;
    }

    .bouton-achat {
        padding: 12px 30px;
        font-size: 16px;
    }

    nav a {
        font-size: 14px;
    }

    nav ul {
        gap: 10px;
    }
}
