/* ==========================================================================
   MARKIZE — v2.css
   Couche "haut de gamme" V2 : hero filigrane or, wordmark papillon,
   shimmer doré, cartes premium. Additif — ne casse pas les pages existantes.
   ========================================================================== */

:root {
  --gold-bright: #e8c66a;
  --gold-deep: #9a7b24;
  --halo: rgba(212, 175, 55, 0.16);
}

/* --------------------------------------------------------------------------
   HERO PREMIUM (home) — décor filigrane + wordmark papillon
   -------------------------------------------------------------------------- */
.hero-v2 {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px var(--gutter) 120px;
  overflow: hidden;
  isolation: isolate;
}

/* Décor doré plein cadre */
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #050304;
  background-image: url("../assets/ronces-hero.jpg");
  background-size: cover;
  background-position: center;
  /* léger zoom lent pour donner vie au décor */
  animation: heroDrift 32s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Voile pour la lisibilité + chaleur dorée */
.hero-v2__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 58% at 50% 44%, transparent 0%, rgba(5, 3, 4, 0.4) 55%, rgba(5, 3, 4, 0.96) 88%),
    linear-gradient(180deg, rgba(5, 3, 4, 0.5) 0%, rgba(5, 3, 4, 0.15) 38%, rgba(5, 3, 4, 0.98) 100%);
}

/* Wordmark papillon */
.hero-v2__mark {
  position: relative;
  width: min(640px, 82vw);
  margin: 0 auto;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.65));
}
.hero-v2__mark img {
  width: 100%;
  height: auto;
  display: block;
}
/* Shimmer doré qui traverse les lettres (masqué par la forme du logo) */
.hero-v2__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 245, 210, 0.85) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 245, 210, 0.85) 52%,
    transparent 70%
  );
  background-size: 250% 100%;
  -webkit-mask: url("../assets/markize-wordmark.png") center / contain no-repeat;
          mask: url("../assets/markize-wordmark.png") center / contain no-repeat;
  mix-blend-mode: screen;
  animation: heroShimmer 6.5s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes heroShimmer {
  0%   { background-position: 180% 0; opacity: 0; }
  12%  { opacity: 1; }
  45%  { background-position: -80% 0; opacity: 1; }
  60%, 100% { background-position: -80% 0; opacity: 0; }
}

.hero-v2__tagline {
  margin: 38px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 24px);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  max-width: 600px;
}
.hero-v2__kicker {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-v2__kicker span { white-space: nowrap; }
.hero-v2__kicker i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: inline-block; opacity: 0.7;
}

.hero-v2__cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Indice de scroll */
.hero-v2__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-v2__scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

@media (max-width: 720px) {
  .hero-v2 { min-height: 92svh; padding: 130px var(--gutter-mobile) 90px; }
  .hero-v2__bg { animation: none; transform: scale(1.06); }
}

/* --------------------------------------------------------------------------
   PAGE-HERO V2 — bandeau cinématique en tête de page (vidéo OU image de fond)
   Réutilise .section-with-video / .bg-video-wrap / .bg-video-veil (components.css)
   -------------------------------------------------------------------------- */
.page-hero-v2 {
  position: relative;
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px var(--gutter) 110px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-v2 .bg-video-wrap video {
  filter: brightness(0.4) contrast(1.06) saturate(0.9);
}
/* Voile doré + assombrissement pour lisibilité */
.page-hero-v2__veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, transparent 0%, rgba(5,3,4,0.5) 80%),
    linear-gradient(180deg, rgba(5,3,4,0.55) 0%, rgba(5,3,4,0.35) 45%, rgba(10,10,10,0.96) 100%);
}
/* Variante fond image (sans vidéo) */
.page-hero-v2__img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: brightness(0.5);
}
.page-hero-v2__eyebrow {
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.page-hero-v2__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.06em;
  margin: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.page-hero-v2__lede {
  margin: 26px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 23px);
  color: var(--ink-soft);
  max-width: 620px;
}
.page-hero-v2 .gold-rule { margin-top: 34px; }
@media (max-width: 720px) {
  .page-hero-v2 { min-height: 56vh; padding: 150px var(--gutter-mobile) 80px; }
}

/* --------------------------------------------------------------------------
   CADRE DORÉ réutilisable (bulles / sections premium)
   -------------------------------------------------------------------------- */
.gold-rule {
  width: 100%;
  max-width: 220px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.gold-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(26, 19, 22, 0.6), rgba(10, 10, 10, 0.6));
  backdrop-filter: blur(6px);
}
.gold-frame::before,
.gold-frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.8;
}
.gold-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.gold-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* --------------------------------------------------------------------------
   FEED NEWS premium (réutilise .news-* mais relooké)
   -------------------------------------------------------------------------- */
.home-feed {
  max-width: 880px;
  margin: 0 auto;
  padding: 110px var(--gutter) 130px;
}
.home-feed__head {
  text-align: center;
  margin-bottom: 70px;
}
.home-feed__eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.home-feed__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0.05em;
  margin: 0 0 22px;
}
@media (max-width: 720px) {
  .home-feed { padding: 70px var(--gutter-mobile) 90px; }
}

/* --------------------------------------------------------------------------
   SECTION V2 — entête centrée réutilisable
   -------------------------------------------------------------------------- */
.section-v2 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 110px var(--gutter) 40px;
}
.section-v2--narrow { max-width: 880px; }
.section-v2__head { text-align: center; margin-bottom: 64px; }
.section-v2__eyebrow {
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-v2__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px); letter-spacing: 0.05em; margin: 0 0 20px;
}
@media (max-width: 720px) { .section-v2 { padding: 70px var(--gutter-mobile) 30px; } }

/* --------------------------------------------------------------------------
   CONCERTS — cartes premium
   -------------------------------------------------------------------------- */
.concert-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26,19,22,0.5), rgba(10,10,10,0.5));
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.concert-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.concert-card__date {
  text-align: center; border-right: 1px solid var(--line); padding-right: 24px;
}
.concert-card__day { font-family: var(--display); font-size: 40px; line-height: 1; color: var(--gold); }
.concert-card__month { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.concert-card__year { font-size: 11px; letter-spacing: 0.2em; color: var(--ink-mute); margin-top: 2px; }
.concert-card__city { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; margin: 0 0 6px; }
.concert-card__venue { font-family: var(--serif); font-size: 17px; color: var(--ink-soft); }
.concert-card__price { margin-top: 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 760px) {
  .concert-card { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 28px 22px; }
  .concert-card__date { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 16px; display: flex; gap: 12px; justify-content: center; align-items: baseline; }
}

.archive-line {
  display: flex; gap: 20px; padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 17px; color: var(--ink-soft);
}
.archive-line strong { color: var(--gold); font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; min-width: 90px; }

/* --------------------------------------------------------------------------
   VIDÉO À LA UNE (embed mp4/yt premium)
   -------------------------------------------------------------------------- */
.featured-video {
  max-width: 880px; margin: 0 auto 30px;
  border: 1px solid var(--line-strong);
  position: relative;
}
.featured-video video, .featured-video iframe {
  width: 100%; display: block; aspect-ratio: 16/9; border: 0; background: #000;
}

/* --------------------------------------------------------------------------
   GRILLE VIDÉOS premium (relooke .singles-grid)
   -------------------------------------------------------------------------- */
.v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v2-card {
  position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.v2-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.v2-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.v2-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.v2-card:hover .v2-card__thumb img { transform: scale(1.06); }
.v2-card__thumb::after {
  content: "▶"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: rgba(255,255,255,0.92); opacity: 0; transition: opacity .35s ease;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.v2-card:hover .v2-card__thumb::after { opacity: 1; }
.v2-card__body { padding: 16px 18px 20px; }
.v2-card__title { font-family: var(--display); font-size: 16px; letter-spacing: 0.03em; margin: 0 0 4px; }
.v2-card__meta { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-mute); text-transform: uppercase; }
@media (max-width: 900px) { .v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   GALERIE
   -------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  font-family: var(--serif); font-size: 15px; color: var(--ink);
  background: linear-gradient(transparent, rgba(5,3,4,0.85));
}
.empty-note {
  grid-column: 1 / -1; text-align: center; color: var(--ink-mute);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; padding: 70px 0;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   CONTACT — canaux premium
   -------------------------------------------------------------------------- */
.contact-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-channel {
  display: flex; flex-direction: column; gap: 8px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26,19,22,0.45), rgba(10,10,10,0.45));
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.contact-channel:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.contact-channel__label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
}
.contact-channel__value { font-family: var(--serif); font-size: 21px; color: var(--ink); }
@media (max-width: 620px) { .contact-channels { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   BANDEAU CTA doré (concert à la une, réutilisable)
   -------------------------------------------------------------------------- */
.hl-banner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 54px 48px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hl-banner__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/frame-gold-dark.jpg") center / cover;
  opacity: 0.5;
}
.hl-banner__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.7), rgba(10,10,10,0.88));
}
@media (max-width: 720px) { .hl-banner { padding: 40px 24px; } }
