/* ------------------------------------------------------------------
   Seif Maayouf — custom production styles
   Layered on top of styles.css (Bootstrap + template base)
   ------------------------------------------------------------------ */

/* ---------- Animated Intro Loader (v2) ---------------------------- */
.splash-loader--v2 {
  /* overrides some properties from base .splash-loader */
  gap: 28px;
}
.splash-loader--v2 .loader-stage {
  position: relative;
  width: min(320px, 62vw);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.splash-loader--v2 .loader-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 24px rgba(242, 180, 67, 0.55));
  opacity: 1;
  transform: scale(1.05);
  animation: loader-svg-fade 2.6s ease-in-out forwards;
}
.splash-loader--v2 .loader-svg-paths path {
  fill: transparent;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: loader-draw 1.8s cubic-bezier(.77, 0, .18, 1) forwards;
}
.splash-loader--v2 .loader-svg-paths .loader-p1 { animation-delay: 0.05s; }
.splash-loader--v2 .loader-svg-paths .loader-p2 { animation-delay: 0.35s; }
.splash-loader--v2 .loader-svg-paths .loader-p3 { animation-delay: 0.65s; }

.splash-loader--v2 .loader-png-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-mask-image: linear-gradient(110deg, transparent 0%, transparent 35%, #000 55%, #000 100%);
          mask-image: linear-gradient(110deg, transparent 0%, transparent 35%, #000 55%, #000 100%);
  -webkit-mask-size: 260% 100%;
          mask-size: 260% 100%;
  -webkit-mask-position: 100% 0%;
          mask-position: 100% 0%;
  animation: loader-png-reveal 1.6s cubic-bezier(.25, .8, .25, 1) 1s forwards;
}
.splash-loader--v2 .loader-png {
  width: 78%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(242, 180, 67, 0.55));
}
.splash-loader--v2 .loader-tagline {
  animation: loader-fade-in 1s ease 1.6s both;
}
.splash-loader--v2 .loader-progress {
  animation: loader-fade-in 0.8s ease 1.4s both;
}

@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes loader-png-reveal {
  0% { opacity: 0; -webkit-mask-position: 100% 0%; mask-position: 100% 0%; }
  40% { opacity: 1; }
  100% { opacity: 1; -webkit-mask-position: 0% 0%; mask-position: 0% 0%; }
}
@keyframes loader-svg-fade {
  70% { opacity: 1; }
  100% { opacity: 0.18; }
}
@keyframes loader-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .splash-loader--v2 .loader-svg-paths path,
  .splash-loader--v2 .loader-svg,
  .splash-loader--v2 .loader-png-wrap,
  .splash-loader--v2 .loader-tagline,
  .splash-loader--v2 .loader-progress {
    animation: none !important;
  }
  .splash-loader--v2 .loader-svg-paths path { stroke-dashoffset: 0; }
  .splash-loader--v2 .loader-png-wrap { opacity: 1; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Contact form -------------------------------------------- */
.contact-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-feedback {
  min-height: 1.2em;
  font-size: 0.95rem;
}
.contact-feedback.is-success { color: #198754; }
.contact-feedback.is-error   { color: #dc3545; }
.contact-form .form-control.is-invalid,
.contact-form .form-control.is-invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: none;
}

/* ---------- Projects / Events Gallery ------------------------------ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  background: transparent;
  border: 1px solid rgba(33, 37, 41, 0.18);
  color: var(--bs-dark, #212529);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-filter-btn:hover {
  border-color: var(--bs-primary, #F2B443);
}
.gallery-filter-btn.is-active {
  background: var(--bs-primary, #F2B443);
  border-color: var(--bs-primary, #F2B443);
  color: #2a1810;
}
.gallery-filter-btn .count {
  opacity: 0.7;
  margin-left: 0.35rem;
  font-weight: 400;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
@media (min-width: 576px) { .gallery-grid { gap: 14px; } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; } }

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #1a1a1a;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.gallery-item img.is-loaded { opacity: 1; }
.gallery-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42, 24, 16, 0.18); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.is-hidden { display: none; }

.gallery-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6c757d;
}

/* Load-more button */
.gallery-more-wrap { display: flex; justify-content: center; margin-top: 2rem; }

/* ---------- Lightbox ----------------------------------------------- */
.lb-root {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 3, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lb-root.is-open { display: flex; }
.lb-stage {
  position: relative;
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 18px 64px rgba(0,0,0,0.55);
  border-radius: 6px;
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 1.4rem;
}
.lb-btn:hover { background: rgba(242, 180, 67, 0.85); color: #2a1810; transform: scale(1.05); }
.lb-btn:focus-visible { outline: 2px solid #F2B443; outline-offset: 3px; }
.lb-prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2vw; top: 50%; transform: translateY(-50%); }
.lb-close { top: 20px; right: 20px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}
@media (max-width: 640px) {
  .lb-prev, .lb-next { width: 44px; height: 44px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 10px; right: 10px; width: 44px; height: 44px; }
}

/* ---------- Skip link (a11y) --------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #2a1810;
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Concert preview cards ---------------------------------- */
.concert-card { }
.concert-main {
  aspect-ratio: 3 / 2;
  background: #1a1a1a;
  border-radius: 10px;
}
.concert-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.concert-main:hover .concert-main-img { transform: scale(1.04); }
.concert-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.concert-thumbs a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #1a1a1a;
  display: block;
}
.concert-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.concert-thumbs a:hover img { transform: scale(1.1); }
.concert-info a { color: inherit; text-decoration: none; }
.concert-info a:hover { color: var(--bs-primary, #F2B443); }

/* ---------- Hero video — cinematic warm overlay -------------------- */
.banner-section::before {
  background:
    linear-gradient(to bottom, rgba(42,24,16,0.65) 0%, rgba(42,24,16,0.18) 45%, rgba(42,24,16,0.62) 100%),
    linear-gradient(135deg, rgba(242,180,67,0.14) 0%, transparent 55%) !important;
}

/* ---------- Press / Dossier modal ---------------------------------- */
#pressModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 24px 80px rgba(42,24,16,0.22);
}
#pressModal .nav-pills .nav-link {
  border-radius: 999px;
  color: #2a1810;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease, color 0.2s ease;
}
#pressModal .nav-pills .nav-link.active {
  background: #2a1810;
  color: #F2B443;
}
#pressModal .btn-dark {
  background: #2a1810;
  border-color: #2a1810;
}
#pressModal .btn-dark:hover { background: #3d2014; border-color: #3d2014; }
#pressModal .form-control:focus { border-color: #F2B443; box-shadow: 0 0 0 3px rgba(242,180,67,0.18); }

/* ---------- Splash loader — remove decorative circles -------------- */
.splash-loader {
  background: linear-gradient(135deg, #2a1810 0%, #2a1810 35%, #3d2014 100%) !important;
}
.splash-loader::before,
.splash-loader::after { display: none !important; }

/* ---------- Hero dual CTA buttons ---------------------------------- */
.hero-btn-concerts { background: rgba(42,24,16,0.55) !important; border-color: #F2B443 !important; border-right: none !important; border-radius: 999px 0 0 999px !important; }
.hero-btn-concerts .btn-text { color: #F2B443 !important; }
.hero-btn-concerts:hover .btn-text { color: #fff !important; }
.hero-btn-videos { background: rgba(242,180,67,0.08) !important; border-color: rgba(255,255,255,0.25) !important; border-left: none !important; border-radius: 0 999px 999px 0 !important; }
.hero-btn-videos .btn-text { color: rgba(255,255,255,0.85) !important; }
.hero-btn-videos:hover .btn-text { color: #fff !important; }
.hero-btn-videos .btn-icon { background: #F2B443 !important; color: #2a1810 !important; }
/* Hover background changes */
.hero-btn-concerts:hover { background: #F2B443 !important; }
.hero-btn-videos:hover   { background: rgba(255,255,255,0.88) !important; border-color: rgba(255,255,255,0.6) !important; }
.hero-btn-videos:hover .btn-text { color: #2a1810 !important; }
.hero-btn-videos:hover .btn-icon { background: #2a1810 !important; color: #F2B443 !important; }
/* Shared: keep overflow hidden so btn-icon animation clips correctly */
.hero-btn-concerts,
.hero-btn-videos { overflow: hidden !important; transition: background 0.3s ease !important; }

/* ---------- YouTube playlist sidebar ------------------------------- */
.yt-item { transition: background 0.18s ease; }
.yt-item:hover { background: rgba(255,255,255,0.06); }
.yt-item.is-active { background: rgba(242,180,67,0.12); border-left: 3px solid #F2B443; padding-left: calc(.5rem - 3px) !important; }

/* ---------- Misc refinements --------------------------------------- */
iconify-icon { display: inline-flex; }

/* ===================================================================
   APPLE LIQUID GLASS SYSTEM
   Warm-tinted glassmorphism: blur + specular edge + refraction shimmer
   =================================================================== */

/* ── 0. Tokens ─────────────────────────────────────────────────────── */
:root {
  --lg-blur:         blur(22px) saturate(190%) brightness(1.04);
  --lg-blur-heavy:   blur(32px) saturate(210%) brightness(1.06);
  --lg-blur-light:   blur(12px) saturate(160%);

  --lg-bg:           rgba(255,255,255,0.07);
  --lg-bg-warm:      rgba(242,180,67,0.06);
  --lg-bg-dark:      rgba(42,24,16,0.08);

  --lg-border:       rgba(255,255,255,0.16);
  --lg-border-warm:  rgba(242,180,67,0.22);
  --lg-border-dark:  rgba(42,24,16,0.10);

  --lg-shadow:       0 8px 32px rgba(0,0,0,0.22),
                     inset 0 1px 0 rgba(255,255,255,0.22),
                     inset 0 -1px 0 rgba(0,0,0,0.06);
  --lg-shadow-warm:  0 8px 32px rgba(42,24,16,0.18),
                     inset 0 1px 0 rgba(242,180,67,0.2),
                     inset 0 -1px 0 rgba(42,24,16,0.06);
  --lg-shadow-dark:  0 8px 32px rgba(42,24,16,0.10),
                     inset 0 1px 0 rgba(255,255,255,0.16),
                     inset 0 -1px 0 rgba(42,24,16,0.04);
}

/* ── 1. Utility classes ────────────────────────────────────────────── */
.lg, .lg-warm, .lg-dark {
  position: relative;
  -webkit-backdrop-filter: var(--lg-blur);
          backdrop-filter: var(--lg-blur);
  overflow: hidden;
}
.lg      { background: var(--lg-bg)      !important; border: 1px solid var(--lg-border)      !important; box-shadow: var(--lg-shadow)      !important; }
.lg-warm { background: var(--lg-bg-warm) !important; border: 1px solid var(--lg-border-warm) !important; box-shadow: var(--lg-shadow-warm) !important; }
.lg-dark { background: var(--lg-bg-dark) !important; border: 1px solid var(--lg-border-dark) !important; box-shadow: var(--lg-shadow-dark) !important; }

/* Specular diagonal sweep — the signature liquid-glass refraction */
.lg::before, .lg-warm::before, .lg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.17)  0%,
    rgba(255,255,255,0.07) 20%,
    transparent            45%,
    rgba(255,255,255,0.04) 70%,
    rgba(255,255,255,0.12) 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
/* Top-edge highlight line */
.lg::after, .lg-warm::after, .lg-dark::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Slow iridescent shimmer — the "liquid" movement */
@keyframes lg-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.lg::before, .lg-warm::before {
  background: linear-gradient(
    110deg,
    transparent                  25%,
    rgba(255,255,255,0.10)        38%,
    rgba(255,220,110,0.07)        43%,
    rgba(200,220,255,0.06)        48%,
    rgba(255,200,240,0.05)        52%,
    rgba(255,255,255,0.08)        57%,
    transparent                  70%
  );
  background-size: 280% 100%;
  animation: lg-shimmer 5s linear infinite;
}

/* ── 2. Header glass ───────────────────────────────────────────────── */
.header {
  -webkit-backdrop-filter: var(--lg-blur-heavy);
          backdrop-filter: var(--lg-blur-heavy);
  background: rgba(42,24,16,0.68) !important;
  border-bottom: 1px solid rgba(242,180,67,0.16) !important;
  box-shadow: 0 4px 28px rgba(0,0,0,0.22),
              inset 0 1px 0 rgba(255,255,255,0.08),
              inset 0 -1px 0 rgba(242,180,67,0.06) !important;
}

/* Header hamburger dropdown */
.header .dropdown-menu {
  -webkit-backdrop-filter: var(--lg-blur-heavy);
          backdrop-filter: var(--lg-blur-heavy);
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(242,180,67,0.18) !important;
  box-shadow: 0 24px 64px rgba(42,24,16,0.22),
              inset 0 1px 0 rgba(255,255,255,0.85) !important;
  border-radius: 20px !important;
}

/* Dossier de presse header button */
.header [data-press-modal] {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(42,24,16,0.6) !important;
  border: 1px solid rgba(242,180,67,0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 12px rgba(42,24,16,0.2) !important;
}
.header [data-press-modal]:hover {
  background: rgba(242,180,67,0.9) !important;
  color: #2a1810 !important;
}

/* ── 3. Cards ──────────────────────────────────────────────────────── */
/* All .card elements get specular depth — backdrop-filter only where useful */
.card {
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 4px 24px rgba(42,24,16,0.10),
              inset 0 1px 0 rgba(255,255,255,0.18),
              inset 0 -1px 0 rgba(0,0,0,0.04) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(42,24,16,0.16),
              inset 0 1px 0 rgba(255,255,255,0.22) !important;
  transform: translateY(-3px);
}
/* Specular diagonal on all cards */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
/* Dark + primary cards — brighter specular */
.card.bg-dark::after  { background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%); }
.card.bg-primary::after { background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%); }

/* ── 4. Programme carousel cards ──────────────────────────────────── */
.featured-projects-slider .item {
  position: relative;
  overflow: hidden;
}
.featured-projects-slider .item > div,
.featured-projects-slider .item > a {
  border: 1px solid rgba(42,24,16,0.08) !important;
  box-shadow: 0 4px 20px rgba(42,24,16,0.08), inset 0 1px 0 rgba(255,255,255,0.55) !important;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.featured-projects-slider .item:hover > div,
.featured-projects-slider .item:hover > a {
  box-shadow: 0 12px 40px rgba(42,24,16,0.14), inset 0 1px 0 rgba(255,255,255,0.7) !important;
  transform: translateY(-2px);
}

/* ── 5. Section badges ─────────────────────────────────────────────── */
.badge.border {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(255,255,255,0.55) !important;
  border-color: rgba(42,24,16,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 8px rgba(42,24,16,0.06);
}
/* Dark section badge (videos, bg-dark) */
#videos .badge,
footer .badge {
  background: #ffffff !important;
  color: #2a1810 !important;
  border-color: rgba(255,255,255,0.9) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* ── 6. CTA buttons (dark-section outline style) ───────────────────── */
/* Force white text on all dark-section outline buttons */
section.bg-dark .btn.border .btn-text,
.btn.border.border-primary .btn-text { color: #fff !important; }

.btn.border.border-white,
section.bg-dark .btn.border {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14),
              inset 0 1px 0 rgba(255,255,255,0.18) !important;
}
.btn.border.border-white:hover,
section.bg-dark .btn.border:hover {
  background: rgba(255,255,255,0.14) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18),
              inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

/* ── 7. Gallery filters ────────────────────────────────────────────── */
.gallery-filter-btn {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(255,255,255,0.55) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 8px rgba(42,24,16,0.05);
}
.gallery-filter-btn:hover {
  background: rgba(255,255,255,0.8) !important;
  box-shadow: 0 4px 16px rgba(42,24,16,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ── 8. Accordion items (FAQ) ──────────────────────────────────────── */
.accordion-item {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(42,24,16,0.07) !important;
  box-shadow: 0 2px 12px rgba(42,24,16,0.05),
              inset 0 1px 0 rgba(255,255,255,0.65) !important;
  overflow: hidden;
}
.accordion-item + .accordion-item { margin-top: 6px; border-radius: 12px !important; }

/* ── 9. YouTube playlist panel ─────────────────────────────────────── */
#yt-playlist {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px;
  padding: 4px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── 10. Press modal (full glass panel) ────────────────────────────── */
#pressModal .modal-content {
  -webkit-backdrop-filter: var(--lg-blur-heavy);
          backdrop-filter: var(--lg-blur-heavy);
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  box-shadow: 0 32px 80px rgba(42,24,16,0.28),
              inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

/* ── 11. Scroll-to-top button ──────────────────────────────────────── */
#scrollToTopBtn {
  -webkit-backdrop-filter: var(--lg-blur);
          backdrop-filter: var(--lg-blur);
  background: rgba(42,24,16,0.72) !important;
  border: 1px solid rgba(242,180,67,0.3) !important;
  box-shadow: 0 8px 24px rgba(42,24,16,0.28),
              inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
#scrollToTopBtn:hover {
  background: rgba(242,180,67,0.9) !important;
  border-color: rgba(242,180,67,0.6) !important;
}

/* ── 12. Hero info bar ─────────────────────────────────────────────── */
#home .banner-section > .container > div > .row > div > div,
.banner-section .d-flex.align-items-center.gap-4[data-aos] {
  background: rgba(42,24,16,0.30) !important;
  border: 1px solid rgba(242,180,67,0.18) !important;
  border-radius: 999px;
  padding: 10px 20px !important;
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── 13. Lightbox buttons ──────────────────────────────────────────── */
.lb-btn {
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2),
              inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

/* ── 14. Footer ────────────────────────────────────────────────────── */
footer {
  -webkit-backdrop-filter: var(--lg-blur);
          backdrop-filter: var(--lg-blur);
  background: rgba(26,15,10,0.9) !important;
  border-top: 1px solid rgba(242,180,67,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* ── 15. Hero dual buttons — glass base ────────────────────────────── */
.hero-btn-concerts,
.hero-btn-videos {
  -webkit-backdrop-filter: var(--lg-blur);
          backdrop-filter: var(--lg-blur);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2),
              inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

/* ── 16. Concerts section cards ────────────────────────────────────── */
#concerts .concert-main,
#concerts .concert-thumbs a {
  box-shadow: 0 4px 20px rgba(42,24,16,0.12),
              inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── 17. Stats / milestones section ────────────────────────────────── */
.stats-facts .row [class*="col"] h3,
.stats-facts .row [class*="col"] p {
  /* text content — no glass needed */
}

/* ── 18. Reduced-motion safety ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .lg::before, .lg-warm::before { animation: none !important; }
}

/* ── 19. Hero slideshow — cinematic depth + auto cross-fade ────────── */

.hero-slideshow {
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform-origin: center center;
  animation:
    hero-slide-fade 16s ease-in-out infinite,
    hero-ken-burns 22s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.hero-slide-1 { animation-delay: 0s, 0s; }
.hero-slide-2 { animation-delay: 8s, -11s; }

@keyframes hero-slide-fade {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  50%  { opacity: 1; }
  56%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes hero-ken-burns {
  0%   { transform: scale(1.0)  translate(0%,    0%);    }
  33%  { transform: scale(1.04) translate(-0.6%, -0.3%); }
  66%  { transform: scale(1.07) translate( 0.4%, -0.6%); }
  100% { transform: scale(1.05) translate( 0.2%,  0.4%); }
}

/* Bottom cinematic fade — brand dark at base, fully clear at top */
.hero-cinematic-overlay {
  background: linear-gradient(
    to bottom,
    rgba(18, 8, 4, 0.18)  0%,
    rgba(18, 8, 4, 0.00) 22%,
    rgba(18, 8, 4, 0.00) 46%,
    rgba(18, 8, 4, 0.55) 72%,
    rgba(18, 8, 4, 0.90) 100%
  );
  z-index: 0;
}

/* Radial vignette — edge darkness creates lens-depth illusion */
.hero-vignette {
  background: radial-gradient(
    ellipse 90% 75% at 50% 42%,
    transparent          28%,
    rgba(10, 4, 2, 0.22) 55%,
    rgba(10, 4, 2, 0.55) 80%,
    rgba(10, 4, 2, 0.70) 100%
  );
  z-index: 0;
}

/* Film grain — SVG fractalNoise tile, mix-blend overlay keeps it subtle */
.hero-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Reduced-motion — freeze Ken Burns + cross-fade, keep overlays */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; transform: scale(1.04) !important; }
  .hero-slide-1 { opacity: 1 !important; }
  .hero-slide-2 { opacity: 0 !important; }
}

/* ── 20. Hero "Prochaines dates" marquee ──────────────────────────── */
.hero-marquee {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(42,24,16,0.30);
  border: 1px solid rgba(242,180,67,0.18);
  border-radius: 999px;
  padding: 8px 18px;
  -webkit-backdrop-filter: var(--lg-blur-light);
          backdrop-filter: var(--lg-blur-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  max-width: 100%;
}
.hero-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--bs-primary, #F2B443);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid rgba(242,180,67,0.22);
}
.hero-marquee-label iconify-icon { font-size: 1.05rem; }
.hero-marquee-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.hero-marquee-track {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero-marquee-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
  animation: hero-marquee-scroll 32s linear infinite;
  will-change: transform;
}
.hero-marquee-list li {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.hero-marquee-list li::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('../images/logos/seiflogo.svg') center/contain no-repeat;
  flex-shrink: 0;
  opacity: 0.85;
}
.hero-marquee-list li strong {
  color: var(--bs-primary, #F2B443);
  font-weight: 700;
}
.hero-marquee:hover .hero-marquee-list { animation-play-state: paused; }

@keyframes hero-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (max-width: 575.98px) {
  .hero-marquee { padding: 6px 14px; gap: 10px; }
  .hero-marquee-label { font-size: 0.7rem; padding-right: 8px; }
  .hero-marquee-logo { width: 22px; height: 22px; }
  .hero-marquee-list { gap: 1.4rem; }
  .hero-marquee-list li { font-size: 0.85rem; gap: 1.4rem; }
  .hero-marquee-list li::after { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-list { animation: none !important; }
}

/* ── 21. About section — responsive card headings ─────────────────── */
#about .col-lg-4 h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (min-width: 1200px) {
  #about .col-lg-4 h2 { font-size: clamp(1.3rem, 1.8vw, 2rem); }
}

/* ── 22. Scroll-to-top wrapper (replaces .get-template template class) */
.sm-scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/* ── 23. Scroll-to-top button — white default, gold on hover ───────── */
#scrollToTopBtn {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}
#scrollToTopBtn iconify-icon { color: #2a1810 !important; }
#scrollToTopBtn:hover {
  background: #F2B443 !important;
  box-shadow: 0 8px 28px rgba(242,180,67,0.35), inset 0 1px 0 rgba(255,255,255,0.6) !important;
  transform: translateY(-2px) !important;
}

/* ── 24. Hero buttons — path-trim border draw animation ────────────── */
/* @property enables smooth transition of the sweep angle inside conic-gradient */
@property --btn-sweep-c {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --btn-sweep-v {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Path draw layer — sits above the glass backdrop, below text */
.hero-btn-concerts::after,
.hero-btn-videos::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition:
    --btn-sweep-c 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    --btn-sweep-v 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Concerts — gold sweep starting from top-center */
.hero-btn-concerts::after {
  --btn-sweep-c: 0deg;
  background: conic-gradient(
    from -90deg,
    #F2B443 0deg,
    #F2B443 var(--btn-sweep-c),
    transparent var(--btn-sweep-c)
  );
}
.hero-btn-concerts:hover::after { --btn-sweep-c: 360deg; }

/* Vidéos — white/soft sweep */
.hero-btn-videos::after {
  --btn-sweep-v: 0deg;
  background: conic-gradient(
    from -90deg,
    rgba(255,255,255,0.85) 0deg,
    rgba(255,255,255,0.85) var(--btn-sweep-v),
    transparent var(--btn-sweep-v)
  );
}
.hero-btn-videos:hover::after { --btn-sweep-v: 360deg; }

/* ── 25. Enhanced Apple Liquid Glass — deeper layers ──────────────── */

/* Stronger header glass */
header.fixed-header,
header.header {
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(0.96) !important;
          backdrop-filter: blur(28px) saturate(200%) brightness(0.96) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 4px 32px rgba(42,24,16,0.22),
    inset 0 -1px 0 rgba(255,255,255,0.08) !important;
}

/* Form inputs — frosted glass style */
.contact-form .form-control,
.contact-form select.form-control,
.contact-form textarea.form-control {
  -webkit-backdrop-filter: blur(10px) saturate(160%) !important;
          backdrop-filter: blur(10px) saturate(160%) !important;
  background: rgba(255,255,255,0.62) !important;
  border-color: rgba(42,24,16,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 8px rgba(42,24,16,0.05) !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-form .form-control:focus,
.contact-form select.form-control:focus,
.contact-form textarea.form-control:focus {
  background: rgba(255,255,255,0.82) !important;
  border-color: #F2B443 !important;
  box-shadow: 0 0 0 3px rgba(242,180,67,0.18), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

/* Stats milestones — glass number tiles */
.stats-facts [class*="col"] .display-4,
.stats-facts [class*="col"] h2,
.stats-facts [class*="col"] h3 {
  text-shadow: 0 1px 2px rgba(42,24,16,0.08);
}
.stats-facts .row > [class*="col"] {
  -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
          backdrop-filter: blur(12px) saturate(160%) !important;
  background: rgba(255,255,255,0.48) !important;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.6) !important;
  box-shadow: 0 4px 20px rgba(42,24,16,0.06), inset 0 1px 0 rgba(255,255,255,0.75) !important;
  padding: 1.5rem !important;
  margin-bottom: 1rem;
}

/* Concert event cards — stronger glass */
#concerts .card,
#events .card {
  -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.03) !important;
          backdrop-filter: blur(18px) saturate(180%) brightness(1.03) !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
  box-shadow:
    0 8px 32px rgba(42,24,16,0.10),
    inset 0 1.5px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(42,24,16,0.04) !important;
}

/* Iridescent shimmer on hero info bar */
#home .d-flex.align-items-center.gap-4 {
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
          backdrop-filter: blur(18px) saturate(180%) !important;
  background: rgba(42,24,16,0.42) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 999px;
  padding: 0.55rem 1.25rem !important;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.12) !important;
}

/* Footer columns — softer glass tint */
footer .footer-menu a:hover {
  -webkit-backdrop-filter: blur(8px) !important;
          backdrop-filter: blur(8px) !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 6px;
  padding-left: 0.35rem;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

/* Reduced-motion — disable all new animations */
@media (prefers-reduced-motion: reduce) {
  .hero-btn-concerts::after,
  .hero-btn-videos::after { transition: none !important; }
  #scrollToTopBtn { transition: none !important; }
}

/* ── Mobile: shrink the hero "Nouveau spectacle" pill text ──────────── */
@media (max-width: 575.98px) {
  .banner-section .d-flex.align-items-center.gap-4 > p.fs-5 {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }
  /* Smaller wave icon next to it */
  .banner-section .d-flex.align-items-center.gap-4 > img.animate-spin {
    width: 28px !important;
    height: 28px !important;
  }
  /* Tighten the gap between icon and text */
  .banner-section .d-flex.align-items-center.gap-4 {
    gap: 0.75rem !important;
  }
}

/* ── 25b. Hero editorial kicker (above H1) ────────────────────────── */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
  width: fit-content;
}
.hero-kicker-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(242, 180, 67, 0.85) 100%);
  flex-shrink: 0;
}
.hero-kicker-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 180, 67, 0.92);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}
@media (max-width: 575.98px) {
  .hero-kicker { gap: 0.6rem; }
  .hero-kicker-line { width: 24px; }
  .hero-kicker-text { font-size: 0.68rem; letter-spacing: 0.14em; }
}

/* ── 25c. Hero scroll-down cue ────────────────────────────────────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
}
.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: #F2B443;
  outline: none;
}
.hero-scroll-cue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 180, 67, 0.40);
  border-radius: 50%;
  background: rgba(42, 24, 16, 0.55);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.15rem;
  color: rgba(242, 180, 67, 0.95);
  animation: hero-scroll-bounce 2s ease-in-out infinite;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-scroll-cue:hover .hero-scroll-cue-icon,
.hero-scroll-cue:focus-visible .hero-scroll-cue-icon {
  background: rgba(242, 180, 67, 0.20);
  border-color: rgba(242, 180, 67, 0.75);
  transform: translateY(2px) scale(1.05);
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.hero-scroll-cue:focus-visible {
  outline: 2px solid #F2B443;
  outline-offset: 6px;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .hero-scroll-cue { bottom: 18px; right: 18px; gap: 4px; font-size: 0.62rem; }
  .hero-scroll-cue-icon { width: 32px; height: 32px; font-size: 1rem; }
}
@media (max-width: 575.98px) {
  /* Hide label on very small screens to keep it tidy */
  .hero-scroll-cue-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue-icon { animation: none !important; }
}

/* ── 26. Hero CTA buttons — premium interactions ──────────────────── */

.hero-btn-concerts,
.hero-btn-videos {
  position: relative;
  isolation: isolate;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    color 0.25s ease !important;
  letter-spacing: 0.015em;
}

/* Hover lift + colored glow */
.hero-btn-concerts:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(242, 180, 67, 0.40),
    0 6px 14px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}
.hero-btn-videos:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(255, 255, 255, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

/* Press feedback — quick scale down */
.hero-btn-concerts:active,
.hero-btn-videos:active {
  transform: translateY(-1px) scale(0.97);
  transition-duration: 0.1s !important;
}

/* Focus-visible ring for keyboard navigation */
.hero-btn-concerts:focus-visible,
.hero-btn-videos:focus-visible {
  outline: 2px solid #F2B443;
  outline-offset: 4px;
}

/* Shine sweep — band of light passes across on hover */
.hero-btn-concerts::before,
.hero-btn-videos::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}
.hero-btn-concerts:hover::before,
.hero-btn-videos:hover::before {
  transform: translateX(120%);
}

/* Idle gold halo on the primary "Concerts" CTA — draws the eye */
.hero-btn-concerts {
  animation: hero-cta-pulse 2.8s ease-in-out infinite;
}
.hero-btn-concerts:hover,
.hero-btn-concerts:focus-visible { animation: none; }

@keyframes hero-cta-pulse {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 0 0 rgba(242, 180, 67, 0);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 0 10px rgba(242, 180, 67, 0.10);
  }
}

/* Reduced-motion safety */
@media (prefers-reduced-motion: reduce) {
  .hero-btn-concerts,
  .hero-btn-videos {
    animation: none !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }
  .hero-btn-concerts:hover,
  .hero-btn-videos:hover { transform: none !important; }
  .hero-btn-concerts::before,
  .hero-btn-videos::before { display: none !important; }
}

/* ── 26b. Hero CTA buttons — second polish layer ──────────────────── */

/* Refined gradient backgrounds for depth (replaces the flat colors) */
.hero-btn-concerts {
  background-image: linear-gradient(
    135deg,
    rgba(58, 33, 22, 0.62) 0%,
    rgba(42, 24, 16, 0.48) 100%
  ) !important;
}
.hero-btn-concerts:hover {
  background-image: linear-gradient(
    135deg,
    #F6CB72 0%,
    #F2B443 52%,
    #D89A2D 100%
  ) !important;
}
.hero-btn-videos {
  background-image: linear-gradient(
    135deg,
    rgba(242, 180, 67, 0.10) 0%,
    rgba(255, 255, 255, 0.06) 100%
  ) !important;
}
.hero-btn-videos:hover {
  background-image: linear-gradient(
    135deg,
    #FFFFFF 0%,
    rgba(255, 255, 255, 0.94) 100%
  ) !important;
}

/* Text glow on hover — subtle "alive" feel */
.hero-btn-concerts:hover .btn-text {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.32), 0 1px 0 rgba(0, 0, 0, 0.10);
  letter-spacing: 0.025em;
  transition: text-shadow 0.35s ease, color 0.25s ease, transform 0.2s ease-in-out, letter-spacing 0.35s ease !important;
}
.hero-btn-videos:hover .btn-text {
  text-shadow: 0 0 18px rgba(242, 180, 67, 0.40);
  letter-spacing: 0.025em;
  transition: text-shadow 0.35s ease, color 0.25s ease, transform 0.2s ease-in-out, letter-spacing 0.35s ease !important;
}

/* Idle subtle text breathing on Concerts (matches the halo) */
.hero-btn-concerts .btn-text {
  text-shadow: 0 0 14px rgba(242, 180, 67, 0.10);
}

/* Icon glow pulse on hover — runs once after the slide-in completes */
.hero-btn-concerts:hover .btn-icon,
.hero-btn-videos:hover .btn-icon {
  animation: hero-icon-glow 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.25s 1;
}
@keyframes hero-icon-glow {
  0%   { filter: brightness(1)    drop-shadow(0 2px 4px rgba(0,0,0,0.10)); }
  50%  { filter: brightness(1.18) drop-shadow(0 0 14px rgba(242,180,67,0.7)); }
  100% { filter: brightness(1)    drop-shadow(0 2px 4px rgba(0,0,0,0.10)); }
}

/* Inner highlight stroke for premium depth */
.hero-btn-concerts:hover {
  box-shadow:
    0 14px 36px rgba(242, 180, 67, 0.45),
    0 6px 14px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(120, 80, 30, 0.25) !important;
}
.hero-btn-videos:hover {
  box-shadow:
    0 14px 36px rgba(255, 255, 255, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.50),
    inset 0 -1px 0 rgba(180, 130, 60, 0.10) !important;
}

/* Reduced-motion: kill the icon glow animation */
@media (prefers-reduced-motion: reduce) {
  .hero-btn-concerts:hover .btn-icon,
  .hero-btn-videos:hover .btn-icon { animation: none !important; }
  .hero-btn-concerts:hover .btn-text,
  .hero-btn-videos:hover .btn-text {
    text-shadow: none !important;
    letter-spacing: normal !important;
  }
}

/* ── 27. Programme / Charte artistique — production cards ─────────── */

.programme-charte .prod-grid { --prod-accent: #F2B443; }

.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid rgba(42, 24, 16, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(42, 24, 16, 0.04);
}

/* Top accent bar — animates in on hover */
.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--prod-accent) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 180, 67, 0.45);
  box-shadow:
    0 18px 40px rgba(42, 24, 16, 0.12),
    0 4px 12px rgba(242, 180, 67, 0.10);
}
.prod-card:hover::before { transform: scaleX(1); }

/* Header: icon + category */
.prod-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.prod-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242, 180, 67, 0.12);
  color: var(--prod-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prod-card:hover .prod-card-icon {
  background: var(--prod-accent);
  color: #2a1810;
  transform: rotate(-6deg) scale(1.05);
}
.prod-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(42, 24, 16, 0.55);
  text-align: right;
  line-height: 1.3;
}

/* Body */
.prod-card-body { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.prod-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #2a1810;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.prod-card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(42, 24, 16, 0.72);
}

/* Bullet list */
.prod-card-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.prod-card-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(42, 24, 16, 0.85);
}
.prod-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--prod-accent);
  box-shadow: 0 0 0 3px rgba(242, 180, 67, 0.18);
}
.prod-card-list li strong {
  color: #2a1810;
  font-weight: 700;
}

/* Footer CTA — centered. Uses bare .btn pattern (identical to "Découvrir l'histoire") */
.prod-card-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 24, 16, 0.08);
  display: flex;
  justify-content: center;
  background: transparent;
}

/* Mobile sizing */
@media (max-width: 575.98px) {
  .prod-card { padding: 1.5rem 1.25rem; gap: 1rem; }
  .prod-card-icon { width: 42px; height: 42px; font-size: 1.3rem; }
  .prod-card-title { font-size: 1.15rem; }
  .prod-card-text { font-size: 0.9rem; }
  .prod-card-list li { font-size: 0.85rem; }
}

/* Reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .prod-card,
  .prod-card-icon { transition: none !important; }
  .prod-card:hover { transform: none !important; }
  .prod-card:hover .prod-card-icon { transform: none !important; }
  .prod-card:hover::before { transform: scaleX(1) !important; }
}
