/* ===================== */
/* RESET & BASE */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff3c00;
    --primary-hover: #ff5722;
    --bg-dark: #0d0d0d;
    --bg-card: #111;
    --text-light: #f2f2f2;
    --border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: url('img/flammes.jpg') no-repeat center top fixed;
    background-size: cover;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    pointer-events: none;
    z-index: -1;
}

/* ===================== */
/* NAVIGATION RESPONSIVE */
/* ===================== */
nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
    padding: 15px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(255, 60, 0, 0.1);
}

/* Menu burger mobile */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.main-nav li a:hover {
    background: var(--primary-hover);
    color: white;
}

/* ===================== */
/* HEADER HERO */
/* ===================== */
/* ==================== NAVIGATION STYLE BRONX/BANGERS ==================== */
/* MENU - STYLE BANGERS/GRAFFITI */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 10px 0; /* AJOUTÉ pour éviter que les gouttes coupent */
}

.nav-menu li {
    display: inline-block;
    position: relative; /* AJOUTÉ */
    z-index: 1; /* AJOUTÉ */
}
.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    
    /* FOND PLUS OPAQUE */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85));
    
    border: 2px solid #ff3c00;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    
    /* POLICE LISIBLE */
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    
    /* OMBRES SUBTILES */
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 5px rgba(0, 0, 0, 0.5);
    
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Effet brillance qui passe */
.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
    pointer-events: none; /* AJOUTÉ - empêche les interférences */
}

.nav-menu a:hover::before {
    left: 150%;
}

/* Goutte de peinture - DÉSACTIVÉE pour éviter les bugs */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 0;
    background: linear-gradient(180deg, #ff3c00, transparent);
    border-radius: 0 0 50% 50%;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none; /* AJOUTÉ - empêche les interférences */
}

.nav-menu a:hover::after {
    height: 20px;
    opacity: 1;
    bottom: -20px;
}
body {
    padding-top: 140px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 4px solid #ff3c00;
    box-shadow: 
        0 5px 30px rgba(0, 0, 0, 0.8), 
        0 0 50px rgba(255, 60, 0, 0.3),
        inset 0 -2px 10px rgba(255, 60, 0, 0.2);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LOGO PRINCIPAL - STYLE BRONX avec gouttes */
.nav-logo {
    font-family: 'Bangers', cursive;
    font-size: 2.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 4px;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        3px 3px 0px #000,
        4px 4px 0px #ff3c00,
        5px 5px 0px #ff5722,
        6px 6px 0px #ffaa00,
        0 0 20px rgba(255, 60, 0, 0.8);
    filter: drop-shadow(0 0 15px rgba(255, 60, 0, 0.6));
    transition: all 0.3s;
}

.nav-logo:hover {
    transform: scale(1.08) rotate(-1deg);
    letter-spacing: 6px;
}

/* Gouttes de peinture multiples */
.nav-logo::before,
.nav-logo::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #ff3c00, transparent);
    border-radius: 0 0 50% 50%;
    animation: drip 4s ease-in-out infinite;
    pointer-events: none;
}

.nav-logo::before {
    bottom: -12px;
    left: 15%;
    width: 6px;
    height: 20px;
    animation-delay: 0.5s;
}

.nav-logo::after {
    bottom: -18px;
    right: 25%;
    width: 8px;
    height: 30px;
}

@keyframes drip {
    0%, 100% { 
        height: 20px; 
        opacity: 0.8; 
    }
    50% { 
        height: 40px; 
        opacity: 0.4; 
    }
}


/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    margin-left: auto;
}
.burger span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, #ff3c00, #ffaa00);
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 
        0 2px 8px rgba(255, 60, 0, 0.5),
        0 0 10px rgba(255, 60, 0, 0.3);
}
/* MENU - STYLE BANGERS/GRAFFITI */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-menu li {
    display: inline-block;
}

/* Effet brillance qui passe */
.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
}
.nav-menu a:hover::before {
    left: 150%;
}
/* Goutte de peinture qui tombe au survol */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 0;
    background: linear-gradient(180deg, #ff3c00, transparent);
    border-radius: 0 0 50% 50%;
    opacity: 0;
    transition: all 0.4s ease;
}
.nav-menu a:hover::after {
    height: 20px;
    opacity: 1;
    bottom: -20px;
}
/* Hover state */
.nav-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.3), rgba(255, 90, 0, 0.2));
    border-color: #ffaa00;
    color: #ffaa00;
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 
        0 8px 25px rgba(255, 60, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 170, 0, 0.4);
    text-shadow: 
        2px 2px 0px #000,
        3px 3px 0px #ff3c00,
        4px 4px 0px #ff5722,
        0 0 15px rgba(255, 170, 0, 1);
    letter-spacing: 3px;
}

/* Active state */
.nav-menu a.active {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.4), rgba(255, 170, 0, 0.2));
    border-color: #ffaa00;
    color: #ffaa00;
    box-shadow: 
        0 0 25px rgba(255, 170, 0, 0.8),
        inset 0 0 20px rgba(255, 60, 0, 0.3);
    text-shadow: 
        2px 2px 0px #000,
        3px 3px 0px #ff3c00,
        0 0 20px rgba(255, 170, 0, 1);
}

/* LOGO DROIT (Melodic Jetpack) */
.nav-logo-right {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.nav-logo-right img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 60, 0, 0.7));
    transition: 0.3s;
}

.nav-logo-right img:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 20px rgba(255, 60, 0, 1));
}

/* ==================== RESPONSIVE DESKTOP ==================== */
@media (min-width: 900px) {
    .burger {
        display: none !important;
    }

    .nav-menu {
        position: static;
        background: none;
        padding: 0;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 899px) {
    body {
        padding-top: 90px;
    }
    .nav-wrapper {
        padding: 15px;
    }
    .nav-logo {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .burger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        height: calc(100vh - 90px);
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(13, 13, 13, 0.95));
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        justify-content: flex-start !important;
        align-items: stretch !important;
        border-top: 4px solid #ff3c00;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-menu li {
        width: 100% !important;
        display: block !important;
    }
    .nav-menu a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 15px 20px;
        font-size: 1.3rem;
        color: white !important;
    }

	  

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .nav-logo-right {
        display: none;
    }
}

/* Scrollbar custom */
.nav-menu::-webkit-scrollbar {
    width: 8px;
}

.nav-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff3c00, #ffaa00);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* ==================== RESPONSIVE DESKTOP ==================== */
@media (min-width: 900px) {
    .burger {
        display: none !important;
    }

    .nav-menu {
        position: static;
        background: none;
        padding: 0;
        transform: none;
        max-height: none;
        overflow: visible;
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 899px) {
    body {
        padding-top: 90px;
    }

    .nav-wrapper {
        padding: 15px;
    }

    .nav-logo {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        height: calc(100vh - 90px);
        flex-direction: column;
        gap: 15px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(13, 13, 13, 0.95));
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        justify-content: flex-start;
        border-top: 4px solid #ff3c00;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1.3rem;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .nav-logo-right {
        display: none;
    }
}

/* Scrollbar custom */
.nav-menu::-webkit-scrollbar {
    width: 8px;
}

.nav-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff3c00, #ffaa00);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* ==================== CAROUSEL BOUTIQUES SIMPLE ==================== */

#boutiques-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

#boutiques-carousel::-webkit-scrollbar {
    height: 8px;
}

.shop-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 260px;
    background: #181818;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.shop-card:hover {
    transform: translateY(-5px);
    border-color: #ff3c00;
}

.shop-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* ==================== CAROUSEL INSTRUS SIMPLE ==================== */

#instrus-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

#instrus-carousel::-webkit-scrollbar {
    height: 8px;
}

.instrus-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 200px;
    background: #111;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(255, 60, 0, 0.3);
    transition: 0.3s;
}

.instrus-card:hover {
    transform: translateY(-5px);
    border-color: #ff3c00;
}


/* ==================== CAROUSEL RÉSEAUX AMÉLIORÉ ==================== */
/* ==================== CAROUSEL RÉSEAUX SIMPLE ==================== */

#reseaux-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

#reseaux-carousel::-webkit-scrollbar {
    height: 8px;
}

.reseau-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 180px;
    background: #000;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
}

.reseau-card:hover {
    transform: translateY(-5px);
    border-color: #ff5722;
}

header {
    padding: clamp(60px, 15vw, 120px) 20px;
    text-align: center;
}

.metal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(90deg, #ff3c00, #ffaa00, #ff3c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 10px rgba(255, 80, 0, 0.6),
        0 0 20px rgba(255, 120, 0, 0.4),
        0 0 40px rgba(255, 60, 0, 0.3);
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-top: 10px;
    opacity: 0.85;
}

.btn-group {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 60, 0, 0.4);
}

/* ===================== */
/* SECTIONS */
/* ===================== */
section {
    padding: clamp(40px, 8vw, 60px) 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================== */
/* GRILLES RESPONSIVES */
/* ===================== */
.video-grid, .beat-grid, .shop-grid, .reseaux-grid, .projets-grid, .instrus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-top: 20px;
}

.disco-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

/* ===================== */
/* CARTES & BLOCS */
/* ===================== */
.release-block, .acheter-wrapper, .projets-wrapper, .reseaux-wrapper, .contact-wrapper {
    background: var(--bg-card);
    padding: clamp(20px, 4vw, 25px);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary);
    margin-bottom: 30px;
}

.release-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.scred-logo {
    display: block;
    margin: 0 auto 15px auto; /* centre horizontalement + espace dessous */
    max-width: 150px;         /* optionnel : évite qu’elle soit trop grande */
}
.acheter-wrapper {
    text-align: center;          /* centre le texte */
    display: flex;
    flex-direction: column;      /* empile proprement */
    align-items: center;         /* centre horizontalement */
    gap: 15px;                   /* espace entre les éléments */
}
.acheter-btn {
    display: inline-block;
    margin: 0 auto;
}

.release-cover {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}
.release-banner {
    display: block;
    width: 100%;
    max-width: 600px;   /* limite la largeur */
    max-height: 180px;  /* limite la hauteur */
    object-fit: cover;  /* coupe proprement */
    border-radius: 10px;
    margin: 0 auto 20px auto; /* centre + espace sous la bannière */
}


.release-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--primary);
    margin-bottom: 8px;
}

.release-meta {
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.release-description {
    line-height: 1.6;
    margin-bottom: 10px;
}
/* Centrage spécifique pour la section Acheter mes CD */
#acheter-cd .acheter-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#acheter-cd .scred-logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 10px auto;
}

/* On surpasse la règle globale des boutons */
#acheter-cd .acheter-btn {
    display: block;              /* plus inline-block ici */
    margin: 10px auto 0 auto;    /* centre horizontalement */
}

/* ===================== CAROUSEL PRESS */

/* ==================== CAROUSEL PRESSE AMÉLIORÉ ==================== */
#presse .carousel-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

#presse-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#presse-carousel::-webkit-scrollbar { 
    display: none; 
    width: 0; 
    height: 0; 
}

.press-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px) saturate(0.5);
}

/* Carte active (au centre) */
.press-card.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) saturate(1);
    z-index: 10;
}

.press-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(255, 60, 0, 0.3);
    border-radius: 12px;
    filter: brightness(0.75);
    transition: all 0.3s;
}

.press-card.active img {
    border-color: #ff3c00;
    box-shadow: 
        0 10px 30px rgba(255, 60, 0, 0.4),
        0 0 20px rgba(255, 60, 0, 0.3);
    filter: brightness(0.85);
}

.press-card:hover img {
    filter: brightness(0.55);
}

.press-card .press-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 60, 0, 0.9);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}

.press-card:hover .press-overlay {
    background: rgba(255, 90, 0, 1);
}

.press-card.active .press-overlay {
    background: rgba(255, 60, 0, 1);
    box-shadow: 0 -5px 15px rgba(255, 60, 0, 0.3);
}

/* Boutons navigation presse */
#presse .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

#presse .carousel-nav button {
    background: linear-gradient(135deg, #ff3c00, #ff5722);
    border: 2px solid #ff3c00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#presse .carousel-nav button:hover {
    background: linear-gradient(135deg, #ff5722, #ffaa00);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.5);
}

#presse .carousel-nav button:active {
    transform: scale(0.95);
}

/* Indicateurs de position (dots) */
#presse .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

#presse .carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 60, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

#presse .carousel-indicators .dot.active {
    background: #ff3c00;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.6);
}

#presse .carousel-indicators .dot:hover {
    background: #ff5722;
    transform: scale(1.2);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .press-card {
        width: 300px;
    }
    
    .press-card img {
        height: 200px;
    }
    
    #presse .carousel-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    #presse-carousel {
        padding: 30px 10px;
        gap: 20px;
    }
}
/* VIDÉOS & MINIATURES */
/* ===================== */
.video-thumb, .press-thumb {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-thumb:hover, .press-thumb:hover {
    transform: scale(1.02);
}

.video-thumb img, .press-thumb img {
    width: 100%;
    display: block;
    filter: brightness(0.75);
    transition: 0.3s;
}

.video-thumb:hover img, .press-thumb:hover img {
    filter: brightness(0.55);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 12vw, 90px);
    height: clamp(60px, 12vw, 90px);
    background: rgba(255, 60, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.video-thumb:hover .play-btn {
    background: rgba(255, 90, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::before {
    content: '';
    display: block;
    margin-left: 4px;
    width: 0;
    height: 0;
    border-left: clamp(18px, 3vw, 28px) solid white;
    border-top: clamp(12px, 2vw, 18px) solid transparent;
    border-bottom: clamp(12px, 2vw, 18px) solid transparent;
}

.press-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255,60,0,0.9);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* ===================== */
/* IMAGES & LOGOS */
/* ===================== */
.artist-photo, .artist-logo, .artist-logo2, .collab-banner {
    text-align: center;
    margin: 30px 0;
}

.artist-photo img {
    max-width: 100%;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    border: 3px solid var(--primary);
}

.artist-logo img, .artist-logo2 img, .scred-logo {
    max-width: clamp(120px, 30vw, 180px);
    width: 100%;
    height: auto;
}

.artist-logo2 img, .scred-logo {
    border: 3px solid var(--primary);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 8px;
}

/* ===================== */
/* PROJETS & COLLABORATIONS */
/* ===================== */
.projet-card, .shop-card, .reseau-card, .instrus-card {
    text-align: center;
    transition: transform 0.3s;
}

.projet-card:hover, .shop-card:hover, .reseau-card:hover, .instrus-card:hover {
    transform: translateY(-5px);
}

.projet-cover, .collab-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--primary);
    transition: 0.25s;
    background: #000;
}

.projet-card:hover .projet-cover {
    box-shadow: 0 0 15px rgba(255,60,0,0.6);
}

.projet-title, .projet-artist {
    margin-top: 10px;
}

.projet-title {
    font-weight: bold;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.projet-artist {
    font-size: clamp(0.75rem, 1.8vw, 0.8rem);
    color: var(--primary);
    opacity: 0.9;
}

/* ===================== */
/* BOUTIQUES */
/* ===================== */
.shop-card {
    background: #181818;
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid #222;
}

.shop-card:hover {
    border-color: var(--primary);
}

.shop-logo {
    width: clamp(80px, 20vw, 120px);
    height: auto;
    opacity: 0.85;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.shop-card:hover .shop-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.shop-btn, .instrus-btn, .acheter-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
    font-size: 0.9rem;
}

.shop-btn:hover, .instrus-btn:hover, .acheter-btn:hover {
    background: var(--primary-hover);
}
.acheter-wrapper .acheter-btn {
    display: block;      /* permet le centrage */
    margin: 10px auto 0; /* centre horizontalement */
}

/* ===================== */
/* RÉSEAUX SOCIAUX */
/* ===================== */
.reseau-card {
    background: #000;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reseau-card:hover {
    box-shadow: 0 0 12px rgba(255,60,0,0.6);
}

.reseau-card img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #000;
    border: 2px solid var(--primary);
    padding: 5px;
}

/* ===================== */
/* CONTACT */
/* ===================== */
.contact-choice {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-toggle {
    background: #000;
    border: 2px solid var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
    font-size: 0.95rem;
}

.contact-toggle:hover, .contact-toggle.active {
    background: var(--primary);
}

.contact-panel {
    display: none;
    margin-top: 20px;
}

.contact-panel.active {
    display: block;
}

.contact-panel form input,
.contact-panel form textarea {
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    background: #000;
    color: white;
    display: block;
    font-family: inherit;
    font-size: 1rem;
}

.contact-panel form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================== */
/* LIENS SPOTIFY/YOUTUBE */
/* ===================== */
.spotify-link, .youtube-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.spotify-link {
    background-color: #1DB954;
}

.spotify-link:hover {
    background-color: #17a44b;
}

.youtube-link {
    background-color: #FF0000;
}

.youtube-link:hover {
    background-color: #cc0000;
}
.deezer-link,
.deezer-link:visited,
.deezer-link:active,
.deezer-link:focus {
    background-color: #7b2cff !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.deezer-link:hover {
    background-color: #5a1ec2 !important;
    color: #ffffff !important;
}

/* ===================== */
/* TAGS & PILLS */
/* ===================== */
.tag-list, .collab-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag, .collab-pill {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.9;
}

.collab-pill {
    background: #181818;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.collab-project {
    font-weight: bold;
    color: var(--text-light);
}

.collab-artist {
    font-size: 0.8rem;
    color: var(--primary);
}

/* ===================== */
/* IFRAME SPOTIFY */
/* ===================== */
iframe {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

/* ===================== */
/* BOUTON RETOUR EN HAUT */
/* ===================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: 0.3s;
    z-index: 9998;
}

#backToTop:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

#backToTop.show {
    display: flex;
}

/* ===================== */
/* FOOTER */
/* ===================== */
footer {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.socials {
    margin-top: 15px;
}

.socials a {
    margin: 0 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary-hover);
}

/* ==================== MODAL IFRAME SCRED ==================== */
.modal-iframe {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-iframe.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content-iframe {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 60, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10001;
    width: 45px;
    height: 45px;
    background: #ff3c00;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
}

.modal-close:hover {
    background: #ff5722;
    transform: rotate(90deg) scale(1.1);
}

#scredIframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .modal-content-iframe {
        height: 95vh;
        border-radius: 0;
    }
    
    .modal-iframe {
        padding: 0;
    }
}

/* ==================== YOUTUBE PLAYER CUSTOM ==================== */
.youtube-player-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.playlist-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#youtubePlayer iframe {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Boutons plateformes */
.btn-youtube {
    background: #FF0000;
}

.btn-youtube:hover {
    background: #cc0000;
}

.btn-spotify {
    background: #1DB954;
}

.btn-spotify:hover {
    background: #17a44b;
}

.btn-deezer {
    background: #7b2cff;
}

.btn-deezer:hover {
    background: #5a1ec2;
}

.btn-apple {
    background: #FA243C;
}

.btn-apple:hover {
    background: #d01d33;
}

/* Responsive */
@media (max-width: 768px) {
    #youtubePlayer iframe {
        height: 300px;
    }
    
    .playlist-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
}
/* ==================== MODAL INSTRUS ==================== */
#instrusModal .modal-content-iframe {
    max-width: 900px;
    height: 80vh;
}

#instrusModal iframe {
    border-radius: 0 0 12px 12px;
}

/* Amélioration des boutons instrus */
.instrus-card .instrus-btn {
    background: linear-gradient(135deg, #ff3c00, #ff5722);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 60, 0, 0.3);
}

.instrus-card .instrus-btn:hover {
    background: linear-gradient(135deg, #ff5722, #ff6f3c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.5);
}

/* Animation au survol des cartes */
.instrus-card {
    position: relative;
    overflow: visible;
}

.instrus-card::before {
    transition: opacity 0.3s;
}

.instrus-card:hover::before {
    opacity: 0.08;
}

/* ==================== MODAL LECTEUR MUSIQUE UNIVERSEL ==================== */
.modal-music {
    max-width: 800px;
    height: 600px;
}

.modal-music iframe {
    border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-music {
        height: 70vh;
    }
}

/* ===================== */
/* MEDIA QUERIES */
/* ===================== */
nav, header {
    height: auto !important;
    overflow: visible !important;
}

/* Tablettes */
@media (min-width: 768px) {
    .release-block {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .release-cover {
        margin: 0;
        flex-shrink: 0;
    }
    
    .nav-links {
        justify-content: flex-end;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Très petits écrans */
@media (max-width: 400px) {
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 30px 15px;
    }
}

/* Animations au scroll */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s, transform 0.6s;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Centrage spécifique pour la section Acheter mes CD */
#acheter-cd .acheter-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#acheter-cd .scred-logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 10px auto;
}

/* On surpasse la règle globale des boutons */
#acheter-cd .acheter-btn {
    display: block;              /* plus inline-block ici */
    margin: 10px auto 0 auto;    /* centre horizontalement */
}
@media (min-width: 900px) {

    .burger {
        display: none !important;
    }

    .nav-links {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 20px !important;

        position: static !important;
        width: 100% !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .nav-links li {
        list-style: none;
        text-align: center;
    }

    .nav-links a {
        display: inline-block;
        padding: 8px 10px;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: 0.2s;
        white-space: nowrap;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--primary);
        color: white;
    }
}
.collab-banner-img {
    display: block;
    width: 100%;
    max-width: 600px;
    max-height: 200px;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 10px;
}

}
/* ========================= */
/* SECTION MERCI — RESET TOTAL */
/* ========================= */

#merci, 
#merci * {
    all: unset !important;
    box-sizing: border-box !important;
}

/* ========================= */
/* RECONSTRUCTION PROPRE */
/* ========================= */

#merci {
    display: block !important;
    width: 100% !important;
    padding: 40px 0 !important;
    text-align: center !important;
    color: white !important;
}

#merci h2 {
    font-size: 2rem !important;
    margin-bottom: 30px !important;
    font-family: Arial, sans-serif !important;
}

/* Conteneur des logos */
#merci .merci-logos {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    width: 100% !important;
}

/* Élément individuel */
#merci .merci-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: auto !important;
}



/* Cover */
.release-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Titre */
.release-card h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    text-align: center;
}

/* Meta */
.release-card .meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
    text-align: center;
}

/* Description */
.release-card .desc {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
}

/* Boutons */
.release-card .links a {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.release-card .spotify { background: #1db954; }
.release-card .youtube { background: #ff0000; }
.release-card .deezer { background: #7b2cff; }

.release-card .spotify:hover { background: #15963f; }
.release-card .youtube:hover { background: #cc0000; }
.release-card .deezer:hover { background: #5a1ec2; }


/* Cercle */
#merci .merci-circle {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #111 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Logo dans le cercle */
#merci .merci-circle img {
    width: 70% !important;
    height: 70% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Nom */
#merci .merci-item p {
    font-size: 0.9rem !important;
    color: white !important;
    text-align: center !important;
    font-family: Arial, sans-serif !important;
}
/* CERCLE 1 (Karl) → blanc */
#merci .merci-item:nth-child(1) .merci-circle {
    background: #ffffff !important;
}

/* CERCLE 2 (Sebulba) → noir */
#merci .merci-item:nth-child(2) .merci-circle {
    background: #000000 !important;
}

/* CERCLE 3 (Kim Prod) → blanc */
#merci .merci-item:nth-child(3) .merci-circle {
    background: #ffffff !important;
}

/* CERCLE 4 (Doc Shek) → noir */
#merci .merci-item:nth-child(4) .merci-circle {
    background: #000000 !important;
}
/* Glow orange sur les cercles */
#merci .merci-circle {
    box-shadow: 0 0 12px rgba(255, 80, 0, 0.8),
                0 0 24px rgba(255, 80, 0, 0.6),
                0 0 36px rgba(255, 80, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

/* Glow encore plus fort au hover */
#merci .merci-circle:hover {
    box-shadow: 0 0 18px rgba(255, 100, 0, 1),
                0 0 36px rgba(255, 100, 0, 0.8),
                0 0 48px rgba(255, 100, 0, 0.6);
}
#merci p a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#merci p a:hover {
    color: var(--primary);
}

}
/* ==================== CAROUSEL DISCOGRAPHIE AMÉLIORÉ ==================== */

.carousel-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

/* Compteur de position */
.carousel-counter {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ff3c00;
    font-weight: bold;
}

/* Wrapper du carousel */
#disco-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

#disco-carousel::-webkit-scrollbar {
    height: 8px;
}

#disco-carousel::-webkit-scrollbar-track {
    background: rgba(255, 60, 0, 0.1);
    border-radius: 10px;
}

#disco-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff3c00, #ffaa00);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* Carte de release */
.carousel-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 60, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px) saturate(0.5);
}

/* Carte active (au centre) */
.carousel-item.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) saturate(1);
    border-color: #ff3c00;
    box-shadow: 
        0 15px 40px rgba(255, 60, 0, 0.4),
        0 0 30px rgba(255, 60, 0, 0.3),
        inset 0 0 20px rgba(255, 60, 0, 0.1);
    z-index: 10;
}

/* Effet flamme animé sur carte active */
.carousel-item.active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 60, 0, 0.15) 0%,
        rgba(255, 120, 0, 0.1) 20%,
        rgba(255, 170, 0, 0.05) 40%,
        transparent 70%
    );
    animation: flame-rotate 4s linear infinite;
    pointer-events: none;
}



@keyframes flame-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flame-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Particules de feu au hover */
.carousel-item:hover::before {
    animation-duration: 2s;
}

/* Cover image */
.carousel-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.carousel-item.active img {
    transform: scale(1.02);
}

/* Titre */
.carousel-item h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #fff;
    text-align: center;
    transition: color 0.3s;
}

.carousel-item.active h3 {
    color: #ff3c00;
    text-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* Meta */
.carousel-item .meta {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
    text-align: center;
}

/* Description */
.carousel-item .desc {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Liens plateformes */
.carousel-item .links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-item .links a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.carousel-item .spotify { background: #1db954; }
.carousel-item .youtube { background: #ff0000; }
.carousel-item .deezer { background: #7b2cff; }

.carousel-item .spotify:hover { 
    background: #15963f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.4);
}

.carousel-item .youtube:hover { 
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.carousel-item .deezer:hover { 
    background: #5a1ec2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 44, 255, 0.4);
}

/* Boutons navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.carousel-nav button {
    background: linear-gradient(135deg, #ff3c00, #ff5722);
    border: 2px solid #ff3c00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: linear-gradient(135deg, #ff5722, #ffaa00);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.5);
}

.carousel-nav button:active {
    transform: scale(0.95);
}

/* Indicateurs de position (dots) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 60, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators .dot.active {
    background: #ff3c00;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.6);
}

.carousel-indicators .dot:hover {
    background: #ff5722;
    transform: scale(1.2);
}

/* Auto-play indicator */
.autoplay-indicator {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
    color: #ffaa00;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .carousel-item {
        width: 240px;
    }
    
    .carousel-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    #disco-carousel {
        padding: 30px 10px;
        gap: 20px;
    }
}

/* Animation d'entrée */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-container {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Glow effet sur hover */
.carousel-item:hover {
    border-color: rgba(255, 60, 0, 0.5);
}

/* Transition fluide entre les cartes */
.carousel-item {
    transition: 
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.5s ease,
        filter 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

/* ==================== CAROUSEL COLLABORATIONS AMÉLIORÉ ==================== */

#collabs .carousel-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

/* Compteur de position */
#collabs .carousel-counter {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ff3c00;
    font-weight: bold;
}

/* Wrapper du carousel */
#collabs-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
scrollbar-width: none;
-ms-overflow-style: none;
#collabs-carousel::-webkit-scrollbar { display: none; width: 0; height: 0; }

/* Carte de collaboration */
.collab-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 200px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px) saturate(0.5);
}

/* Carte active (au centre) */
.collab-card.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) saturate(1);
    z-index: 10;
}

/* Effet flamme animé sur carte active */
.collab-card.active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 60, 0, 0.15) 0%,
        rgba(255, 120, 0, 0.1) 20%,
        rgba(255, 170, 0, 0.05) 40%,
        transparent 70%
    );
    animation: flame-rotate 4s linear infinite;
    pointer-events: none;
    border-radius: 10px;
}

/* Effet flamme pulsante */
.collab-card.active::after {
    content: '🔥';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5rem;
    animation: flame-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 60, 0, 0.8));
    z-index: 20;
}

@keyframes flame-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flame-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Lien dans la carte */
.collab-card a {
    display: block;
    text-decoration: none;
}

/* Image de la collaboration */
.collab-card img,
.collab-card .projet-cover {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 60, 0, 0.3);
    transition: all 0.3s;
    background: #000;
    display: block;
}

.collab-card.active img,
.collab-card.active .projet-cover {
    border-color: #ff3c00;
    box-shadow: 
        0 10px 30px rgba(255, 60, 0, 0.4),
        0 0 20px rgba(255, 60, 0, 0.3);
    transform: scale(1.02);
}

/* Titre du projet */
.collab-card .projet-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
    transition: color 0.3s;
}

.collab-card.active .projet-title {
    color: #ff3c00;
    text-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* Nom de l'artiste */
.collab-card .projet-artist {
    font-size: 0.8rem;
    color: #ffaa00;
    opacity: 0.9;
}

/* Hover effect */
.collab-card:hover img {
    box-shadow: 0 0 15px rgba(255, 60, 0, 0.6);
}

/* Boutons navigation */
#collabs .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

#collabs .carousel-nav button {
    background: linear-gradient(135deg, #ff3c00, #ff5722);
    border: 2px solid #ff3c00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#collabs .carousel-nav button:hover {
    background: linear-gradient(135deg, #ff5722, #ffaa00);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 60, 0, 0.5);
}

#collabs .carousel-nav button:active {
    transform: scale(0.95);
}

/* Indicateurs de position (dots) */
#collabs .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#collabs .carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 60, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

#collabs .carousel-indicators .dot.active {
    background: #ff3c00;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.6);
}

#collabs .carousel-indicators .dot:hover {
    background: #ff5722;
    transform: scale(1.2);
}

/* Auto-play indicator */
#collabs .autoplay-indicator {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
    color: #ffaa00;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .collab-card {
        width: 180px;
    }
    
    #collabs .carousel-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    #collabs-carousel {
        padding: 30px 10px;
        gap: 20px;
    }
}

/* Animation d'entrée */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#collabs .carousel-container {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Transition fluide entre les cartes */
.collab-card {
    transition: 
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.5s ease,
        filter 0.5s ease;
}
/* ========================= */
/* PATCH MENU DESKTOP SEULEMENT */
/* ========================= */

/* On corrige le comportement du menu en desktop sans toucher au mobile */
@media (min-width: 900px) {

    /* On s'assure que le body a bien la bonne marge en desktop */
    body {
        padding-top: 120px;
    }

    /* Burger invisible en desktop */
    .burger {
        display: none !important;
    }

    /* Menu horizontal propre */
    .nav-menu {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px 15px;
        list-style: none;
        align-items: center;
        justify-content: center;
        position: static !important;
        background: none !important;
        padding: 0 !important;
        transform: none !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .nav-menu li {
        width: auto;
    }

    .nav-menu a {
        width: auto;
        padding: 8px 14px;
        margin: 0;
        font-size: 0.9rem;
        justify-content: center;
    }
}
/* Logo à droite du menu (3× plus gros) */
.nav-logo-right {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.nav-logo-right img {
    height: 135px; /* 3× plus gros que 45px */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255,60,0,0.4));
    transition: 0.3s;
}

.nav-logo-right img:hover {
    transform: scale(1.05);
}

/* En mobile : on cache le logo droit pour ne pas casser le burger */
@media (max-width: 899px) {
    .nav-logo-right {
        display: none;
    }
}
/* Masquer les compteurs */
.carousel-counter {
    display: none !important;
}

