/* ============================================================
   AfrikEnFête – Single Artiste (v2)
   Inspiré du style du site : Bebas Neue, .deco, hover-tilt,
   largeur Kadence 1290px
   Colors: #EF9437 #C71D1F  accent: #0FB6AC  texte: #F1F1F1
   ============================================================ */

/* Remove theme padding above the hero */
.single-artiste #primary,
.single-artiste #main,
.single-artiste main,
.single-artiste .site-main,
.single-artiste #content,
.single-artiste .content-area,
.single-artiste .entry-content,
.single-artiste .entry-content-wrap,
.single-artiste .content-bg,
.single-artiste article.entry,
.single-artiste .entry,
.single-artiste .inner-wrap,
.single-artiste .post-content-area,
.single-artiste .wp-block-post-content,
.single-artiste .kadence-inner-column-inner {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.aef-artiste-wrap {
    --aef-orange : #EF9437;
    --aef-red    : #C71D1F;
    --aef-teal   : #0FB6AC;
    --aef-light  : #F1F1F1;
    --aef-dark   : #111111;
    --aef-dark2  : #C71D1F;
    --aef-max    : 1290px;
    --aef-pad    : clamp(24px, 4vw, 60px);

    font-family: var(--global-body-font-family, 'Roboto', sans-serif);
    line-height: 1.6;
    color: var(--aef-light);
}

.aef-artiste-wrap *,
.aef-artiste-wrap *::before,
.aef-artiste-wrap *::after { box-sizing: border-box; }

.aef-artiste-wrap ul { list-style: none; padding: 0; margin: 0; }
.aef-artiste-wrap h1,
.aef-artiste-wrap h2 { margin: 0; }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.aef-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}


.aef-hero--has-img  { background: var(--aef-dark); }
.aef-hero--gradient {
    background: linear-gradient(150deg, #1a0a00 0%, #3d1200 55%, #1a0000 100%);
}

/* Wrapper de l'image — même pattern que .hover-tilt du site */
.aef-hero__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.aef-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Dégradé sombre vers le bas */
.aef-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.96)   0%,
        rgba(0,0,0,.60)  40%,
        rgba(0,0,0,.10)  80%,
        transparent      100%
    );
    z-index: 2;
}

/* Contenu du hero */
.aef-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--aef-max);
    margin: 0 auto;
    padding: clamp(40px, 8vw, 90px) var(--aef-pad);
}

/* Badge genre — teal */
.aef-badge {
    display: inline-block;
    background: var(--aef-teal);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 5px 20px;
    border-radius: 40px;
    margin-bottom: 18px;
    font-family: 'Lato', var(--global-body-font-family, sans-serif);
}

/* Nom du groupe — Bebas Neue comme sur le site */
.aef-hero__title {
    font-family: 'Bebas Neue', var(--global-heading-font-family, sans-serif);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    color: var(--aef-light);
    line-height: 0.92;
    letter-spacing: 3px;
    text-shadow: 0 4px 50px rgba(0,0,0,.55);
}

/* ════════════════════════════════════════════════════════════
   BANDE DECO — même pattern que la classe .deco du site
   Fond orange avec lignes blanches courbées
════════════════════════════════════════════════════════════ */
.aef-deco-band {
    position: relative;
    background-color: var(--aef-orange);
    overflow: hidden;
    padding: 40px var(--aef-pad);
}

/* Tout le contenu passe au-dessus des pseudo-éléments */
.aef-deco-band > * {
    position: relative;
    z-index: 2;
}


/* Contenu interne de la bande */
.aef-deco-band__inner {
    max-width: var(--aef-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
}

/* Item date / heure */
.aef-deco-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 32px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.3);
}
.aef-deco-item:last-child { border-right: none; }

.aef-deco-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #fff;
    opacity: .85;
}

.aef-deco-item strong {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.75);
    font-weight: 700;
    margin-bottom: 2px;
    font-family: 'Lato', sans-serif;
}

.aef-deco-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1;
}

.aef-deco-sep {
    width: 2px;
    height: 44px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SECTION CONTENU
════════════════════════════════════════════════════════════ */
.aef-content {
    background: var(--aef-dark2);
    padding: clamp(50px, 8vw, 100px) var(--aef-pad) 20px;
}

.aef-container {
    max-width: var(--aef-max);
    margin: 0 auto;
}

.aef-grid {
    display: grid;
    gap: 60px;
    align-items: start;
}
.aef-grid--split { grid-template-columns: 1fr 2fr; }
.aef-grid--full  { grid-template-columns: 1fr; }

/* Titre de section — Bebas Neue orange */
.aef-section-title {
    font-family: 'Bebas Neue', var(--global-heading-font-family, sans-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--aef-orange);
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(239,148,55,.25);
    line-height: 1;
}

/* ── Biographie ──────────────────────────────────────────── */
.aef-bio {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.aef-bio__text {
    max-width: 820px;
    position: relative;
    padding-left: 28px;
}

/* Barre verticale orange à gauche */
.aef-bio__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(to bottom, var(--aef-orange), var(--aef-red));
    border-radius: 2px;
}

.aef-bio__text p {
    font-family: 'Roboto', var(--global-body-font-family, sans-serif);
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(241,241,241,.85);
    margin: 0 0 1.2em;
}
.aef-bio__text p:last-child { margin-bottom: 0; }

/* ── Revue de presse (slider) ────────────────────────────── */
.aef-presse {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.aef-presse__slider {
    margin-top: 24px;
}

.aef-presse__item {
    display: none;
    margin: 0 !important;
    padding: 28px 0 !important;
    text-align: center;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.aef-presse__item.is-active {
    display: block;
    animation: aef-fadein .5s ease;
}

@keyframes aef-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.aef-presse__item p {
    font-family: 'Roboto', var(--global-body-font-family, sans-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(241,241,241,.9);
    margin: 0 0 14px;
}

.aef-presse__item p::before { content: '\201C'; }
.aef-presse__item p::after  { content: '\201D'; }

.aef-presse__item cite {
    display: block;
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aef-orange);
    font-family: 'Lato', sans-serif;
}

/* ── Réseaux sociaux ─────────────────────────────────────── */
.aef-socials-wrap {
    margin-top: 40px;
}

.aef-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.aef-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background .25s, color .25s, transform .25s;
}

.aef-social__link svg {
    width: 20px;
    height: 20px;
}

.aef-social__link:hover {
    background: var(--aef-orange);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Liste des membres ───────────────────────────────────── */
.aef-membres__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aef-membres__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid var(--aef-orange);
    border-radius: 0 6px 6px 0;
    font-family: 'Lato', var(--global-body-font-family, sans-serif);
    font-size: 1rem;
    color: var(--aef-light);
    transition: background .25s, border-left-color .25s;
}
.aef-membres__item:hover {
    background: rgba(239,148,55,.09);
    border-left-color: var(--aef-teal);
}

/* Point blanc — comme .white-dots sur le site */
.aef-membres__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    transition: background .25s;
}
.aef-membres__item:hover .aef-membres__dot { background: var(--aef-teal); }

/* ── Vidéo YouTube ───────────────────────────────────────── */
.aef-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.07),
        0 20px 60px rgba(0,0,0,.55);
}
.aef-video {
    text-align: left;
}

.aef-video__fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Lato', var(--global-body-font-family, sans-serif);
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.aef-video__fallback:hover {
    color: var(--aef-orange);
}

.aef-video__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media ( max-width: 900px ) {
    .aef-grid--split { grid-template-columns: 1fr; }
}

@media ( max-width: 640px ) {
    .aef-hero { min-height: 75vh; }

    .aef-deco-band__inner { flex-direction: column; align-items: flex-start; }

    .aef-deco-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 12px 0;
        width: 100%;
    }
    .aef-deco-item:last-child { border-bottom: none; }
    .aef-deco-sep { display: none; }
}

/* ════════════════════════════════════════════════════════════
   GRADIENT BAS DE PAGE
════════════════════════════════════════════════════════════ */
.aef-artiste-wrap::after {
    content: '';
    display: block;
    height: 20px;
    background: linear-gradient(to bottom, var(--aef-dark2), var(--aef-red));
}
