/* ================================================================== */
/* --- YOLVENZA ARTISTES STYLE --- */
/* --- © Yolvenza 2026. ® Tous droits réservés. --- */
/* ================================================================== */

/* Note : Ce fichier suppose que les variables (:root) sont chargées 
   via le fichier parent ../yolvenza_style.css (Brun, Noir, Blanc, Helvetica) */

/* ================================================================== */
/* --- HEADER INTERNE (NAV ARTISTES) --- */
/* ================================================================== */
.navbar-force {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--brun-yolvenza);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-main);
    gap: 10px;
    backdrop-filter: blur(5px);
}

.internal-logo-center {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-main);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.internal-logo-center:hover {
    opacity: 0.8;
}

.artists-nav-line {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.artist-nav-link {
    color: var(--text-sub);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.artist-nav-link:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.artist-nav-link.active {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--brun-yolvenza);
}

/* ================================================================== */
/* --- MISE EN PAGE ARTISTE (BIO & HEADER) --- */
/* ================================================================== */
.artist-header-content {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.artist-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none;
    background: transparent;
}

.artist-bio {
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: var(--text-main);
    text-align: left;
    font-size: 1rem;
}

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ================================================================== */
/* --- CARTE DE SORTIE HORIZONTALE (DISCOGRAPHIE) --- */
/* ================================================================== */
.release-card-horizontal {
    display: flex;
    flex-direction: row;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: border-color 0.3s, transform 0.3s;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.release-card-horizontal:hover {
    border-color: var(--brun-yolvenza);
    transform: translateY(-3px);
}

/* Cover (Gauche) */
.release-cover-container {
    flex: 0 0 300px;
    height: auto;
    width: 300px;
    flex-shrink: 0;
    background-color: #111;
    position: relative;
}

.release-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenu (Droite) */
.release-content-box {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.release-title-h {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.release-desc-h {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Lecteurs */
.sc-player-container {
    width: 100%;
    height: 166px;
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.sc-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.yt-video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
    margin-top: 20px;
}

.yt-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================================================== */
/* --- RESPONSIVE MOBILE --- */
/* ================================================================== */
@media (max-width: 768px) {
    .navbar-force {
        padding: 10px 5%;
        gap: 8px;
    }
    .internal-logo-center {
        font-size: 1.4rem;
    }
    .artists-nav-line {
        gap: 15px;
        font-size: 0.75rem;
    }
    
    .release-card-horizontal {
        flex-direction: column;
    }
    .release-cover-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        flex: none;
    }
    .release-content-box {
        padding: 20px;
    }
    .release-title-h {
        font-size: 1.4rem;
    }
}