/* ===================== */
/* CAROUSELS */
/* ===================== */

/* Container général */
.carousel-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

/* Navigation des carousels */
.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 (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);
}

/* ===================== */
/* CAROUSEL DISCOGRAPHIE */
/* ===================== */
#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: none;
    -ms-overflow-style: none;
}

#disco-carousel::-webkit-scrollbar {
    display: none;
}

.release-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 300px;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(255, 60, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

.release-card.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    border-color: #ff3c00;
    box-shadow: 0 10px 40px rgba(255, 60, 0, 0.4);
    z-index: 10;
}

.release-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.release-card.active img {
    box-shadow: 0 5px 20px rgba(255, 60, 0, 0.3);
}

.release-card h3 {
    color: #ff3c00;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

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

.release-card .desc {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.release-card .links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.release-card .links a {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.release-card .links a.spotify {
    background: #1DB954;
    color: white;
}

.release-card .links a.spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.release-card .links a.deezer {
    background: #FF0092;
    color: white;
}

.release-card .links a.deezer:hover {
    background: #ff1aa0;
    transform: translateY(-2px);
}

.release-card .links a.youtube {
    background: #FF0000;
    color: white;
}

.release-card .links a.youtube:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
}

/* ===================== */
/* CAROUSEL PRESSE */
/* ===================== */
#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;
}

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

.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);
}

.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);
    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);
}

/* ===================== */
/* CAROUSELS SIMPLES (Boutiques, Instrus, Réseaux) */
/* ===================== */
#boutiques-carousel,
#instrus-carousel,
#reseaux-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff3c00 rgba(255, 60, 0, 0.1);
}

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

#boutiques-carousel::-webkit-scrollbar-track,
#instrus-carousel::-webkit-scrollbar-track,
#reseaux-carousel::-webkit-scrollbar-track {
    background: rgba(255, 60, 0, 0.1);
    border-radius: 4px;
}

#boutiques-carousel::-webkit-scrollbar-thumb,
#instrus-carousel::-webkit-scrollbar-thumb,
#reseaux-carousel::-webkit-scrollbar-thumb {
    background: #ff3c00;
    border-radius: 4px;
}

/* Cartes boutiques */
.shop-card {
    flex: 0 0 auto;
    width: 200px;
    background: rgba(17, 17, 17, 0.95);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 60, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.shop-card:hover {
    transform: translateY(-5px);
    border-color: #ff3c00;
    box-shadow: 0 5px 20px rgba(255, 60, 0, 0.3);
}

.shop-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Cartes instrus */
.instrus-card {
    flex: 0 0 auto;
    width: 200px;
    background: rgba(17, 17, 17, 0.95);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 60, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.instrus-card:hover {
    transform: translateY(-5px);
    border-color: #ff3c00;
    box-shadow: 0 5px 20px rgba(255, 60, 0, 0.3);
}

.instrus-card h3 {
    color: #ff3c00;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.instrus-btn {
    width: 100%;
    padding: 10px;
    background: #ff3c00;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.instrus-btn:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

/* Cartes réseaux sociaux */
.reseau-card {
    flex: 0 0 auto;
    width: 150px;
    background: rgba(17, 17, 17, 0.95);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 60, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reseau-card:hover {
    transform: translateY(-5px);
    border-color: #ff3c00;
    box-shadow: 0 5px 20px rgba(255, 60, 0, 0.3);
}

.reseau-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.reseau-card span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================== */
/* CAROUSEL COLLABORATIONS */
/* ===================== */
#collabs-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;
}

#collabs-carousel::-webkit-scrollbar {
    display: none;
}

.collab-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 350px;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 60, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

.collab-card.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    border-color: #ff3c00;
    box-shadow: 0 10px 40px rgba(255, 60, 0, 0.4);
    z-index: 10;
}

.collab-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collab-card .collab-info {
    padding: 20px;
}

.collab-card h3 {
    color: #ff3c00;
    margin-bottom: 8px;
}

.collab-card p {
    margin-bottom: 0;
    line-height: 1.5;
}
