/* ========================================
   AEP : styles pages artistes
   Complète style.css (ne le remplace pas)
   ======================================== */

/* --- Hero artiste --- */
.artist-hero {
    min-height: 92vh;
    padding: 140px 0 60px;
}

.artist-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.artist-hero .hero-subtitle {
    max-width: 560px;
    line-height: 1.6;
}

.artist-hero-visual {
    display: flex;
    justify-content: center;
}

.artist-hero-visual img {
    max-height: 480px;
    width: auto;
    border-radius: var(--radius);
    object-fit: cover;
    transform: rotate(1.5deg);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transition: transform var(--transition);
}
.artist-hero-visual img:hover { transform: rotate(0deg); }

/* --- Bio --- */
.artist-bio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.artist-bio-visual { margin: 0; }
.artist-bio-visual img {
    border-radius: var(--radius);
    transform: rotate(-1deg);
    border: 1px solid var(--border);
    transition: transform var(--transition);
}
.artist-bio-visual img:hover { transform: rotate(0deg); }

.photo-credit {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    letter-spacing: 0.05em;
}

/* --- Scènes marquantes --- */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.venue-card {
    padding: 24px 20px 24px 24px;
    border-left: 4px solid var(--border);
    transition: all var(--transition);
}
.venue-card:nth-child(4n+1) { border-left-color: var(--amber); }
.venue-card:nth-child(4n+2) { border-left-color: var(--coral); }
.venue-card:nth-child(4n+3) { border-left-color: var(--emerald); }
.venue-card:nth-child(4n+4) { border-left-color: rgba(255, 255, 255, 0.25); }

.venue-card:hover {
    transform: translateX(6px);
    border-left-width: 6px;
}

.venue-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.venue-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Discographie --- */
.artist-disco { max-width: 720px; }

.artist-disco > p {
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.label-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.label-chip {
    padding: 8px 18px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.04em;
    transform: rotate(-0.5deg);
    transition: all var(--transition);
}
.label-chip:nth-child(even) { transform: rotate(0.5deg); }
.label-chip:hover { transform: rotate(0deg); border-color: var(--amber); }

.artist-setup {
    margin-bottom: 32px;
    padding: 20px 24px;
    border-left: 4px solid var(--emerald);
}

.artist-setup h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.artist-setup p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Galerie --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.gallery-item { margin: 0; }

.gallery-item img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transform: rotate(-0.8deg);
    transition: transform var(--transition);
}
.gallery-item:nth-child(2) img { transform: rotate(0.8deg); }
.gallery-item:nth-child(3) img { transform: rotate(-0.5deg); }
.gallery-item img:hover { transform: rotate(0deg) scale(1.01); }

.gallery-item figcaption {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* --- Mur de flyers --- */
.flyers-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 72px 0 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.flyers-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.flyers-wall {
    columns: 3;
    column-gap: 24px;
}

.flyer-item {
    break-inside: avoid;
    margin: 0 0 24px;
}

.flyer-item img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition);
}
.flyer-item img:hover {
    transform: scale(1.02);
    border-color: rgba(251, 191, 36, 0.35);
}

.flyer-item figcaption {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    line-height: 1.5;
}

/* --- Section tags couleurs (page artiste) --- */
#bio .section-tag { color: var(--coral); }
#bio .section-tag::before { background: var(--coral); }
#scenes .section-tag { color: var(--amber); }
#scenes .section-tag::before { background: var(--amber); }
#disco .section-tag { color: var(--emerald); }
#disco .section-tag::before { background: var(--emerald); }
#galerie .section-tag { color: var(--coral); }
#galerie .section-tag::before { background: var(--coral); }
#contact .section-tag { color: var(--amber); }
#contact .section-tag::before { background: var(--amber); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .artist-hero { padding: 120px 0 48px; }

    .artist-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .artist-hero-visual img { max-height: 360px; }

    .artist-bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .venues-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(3) img { max-height: 480px; width: auto; margin: 0 auto; }

    .flyers-wall { columns: 2; }
}

@media (max-width: 560px) {
    .venues-grid { grid-template-columns: 1fr; gap: 0; }
    .venue-card { border-bottom: 1px solid var(--border); padding: 20px 0 20px 20px; }
    .venue-card:last-child { border-bottom: none; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(3) { grid-column: auto; }

    .flyers-wall { columns: 1; }
}
