@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --gold: #C9A84C;
  --gold-bright: #E8C76A;
  --gold-light: #F5E6C8;
  --gold-dim: rgba(201, 168, 76, 0.22);
  --gold-glow: rgba(201, 168, 76, 0.07);
  --night: #07070F;
  --night-soft: #0D0D1E;
  --card: #10101F;
  --cream: #EDE8DC;
  --muted: rgba(237, 232, 220, 0.45);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 34px;
  background: #C0392B;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  flex-shrink: 0;
}

.ticker-dot {
  font-size: 6px !important;
  opacity: 0.45;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Curtain ──────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--night);
  z-index: 9999;
  animation: curtain-fade 1s ease 0.2s both;
  pointer-events: none;
}
@keyframes curtain-fade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   HERO — Poster as full background
═══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 1.5rem 4.5rem;
}

/* The poster image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('HERO.png') center top / cover no-repeat;
  z-index: 0;
  animation: hero-zoom 10s ease-out both;
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Gradient: transparent top → opaque black bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 15, 1)    0%,
    rgba(7, 7, 15, 0.88) 18%,
    rgba(7, 7, 15, 0.45) 42%,
    rgba(7, 7, 15, 0.1)  65%,
    transparent          100%
  );
  z-index: 1;
}

/* Stars */
.stars-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: star-twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.06; transform: scale(1); }
  50%       { opacity: 0.5;  transform: scale(1.5); }
}

/* Art Deco corners */
.corner-ornament {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
  animation: fade-up-in 1s ease 1.2s both;
}
.corner-ornament.tl { top: 1.75rem; left: 1.75rem; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: 0.5; }
.corner-ornament.tr { top: 1.75rem; right: 1.75rem; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: 0.5; }
.corner-ornament.bl { bottom: 1.75rem; left: 1.75rem; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: 0.25; }
.corner-ornament.br { bottom: 1.75rem; right: 1.75rem; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: 0.25; }
.corner-ornament::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.corner-ornament.tl::before { top: -2.5px; left: -2.5px; }
.corner-ornament.tr::before { top: -2.5px; right: -2.5px; }
.corner-ornament.bl::before { bottom: -2.5px; left: -2.5px; }
.corner-ornament.br::before { bottom: -2.5px; right: -2.5px; }

/* Hero content zone */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  width: 100%;
  max-width: 580px;
}

.hero-org {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.75rem;
  animation: fade-up-in 0.8s ease 0.5s both;
}

.hero-deco-line {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 1rem;
  animation: fade-up-in 0.8s ease 0.65s both;
}
.hero-deco-line span:not(.diamond-mark) {
  display: block;
  width: 55px;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5), transparent);
}
.diamond-mark { color: var(--gold); font-size: 7px; opacity: 0.6; }

.hero-tagline {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(237, 232, 220, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
  animation: fade-up-in 0.8s ease 0.8s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up-in 0.8s ease 1s both;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--night);
  border: none;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cta-gold svg { width: 14px; height: 14px; stroke-width: 2; }
.btn-cta-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: rgba(7, 7, 15, 0.5);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}
.btn-cta-ghost svg { width: 14px; height: 14px; stroke-width: 1.75; }
.btn-cta-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.18);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 4;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.65), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.8) translateY(0); transform-origin: top; }
  50%       { opacity: 0.9; transform: scaleY(1) translateY(4px); }
}

/* ═══════════════════════════════════════════════════
   CONTAINER & NAV
═══════════════════════════════════════════════════ */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.nav-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 2.5rem;
  background: var(--night-soft);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--gold-dim);
}
.tab-btn {
  flex: 1;
  padding: 11px 16px;
  background: transparent;
  border: none;
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tab-btn svg { width: 13px; height: 13px; stroke-width: 1.75; }
.tab-btn:hover { color: rgba(237, 232, 220, 0.7); }
.tab-btn.active { background: var(--gold); color: var(--night); }

/* ── Pages ──────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── Section titles ─────────────────────────────── */
.section-title { font-size: 20px; font-weight: 700; color: var(--cream); margin: 0 0 0.3rem 0; letter-spacing: 0.2px; }
.section-sub { font-size: 13px; font-weight: 400; color: var(--muted); margin: 0 0 1.5rem 0; }

/* ── Activity cards ─────────────────────────────── */
.cards-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.activity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 0.5px solid var(--gold-dim);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.18s, border-left-color 0.18s, background 0.18s;
}
.activity-card:hover { border-color: rgba(201, 168, 76, 0.4); border-left-color: rgba(201, 168, 76, 0.35); }
.activity-card.selected { border-color: var(--gold-dim); border-left-color: var(--gold); background: rgba(16, 16, 32, 0.95); }

.card-icon-box {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 0.5px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.card-icon-box svg { width: 16px; height: 16px; stroke-width: 1.5; }
.card-body { flex: 1; min-width: 0; }
.activity-card h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--cream); margin: 0 0 3px 0; }
.activity-card .desc { font-size: 13px; font-weight: 400; color: var(--muted); margin: 0; }
.card-price { font-size: 15px; font-weight: 700; color: var(--gold); flex-shrink: 0; white-space: nowrap; }
.card-price .price-currency { font-size: 10px; font-weight: 400; opacity: 0.6; }

/* ── Form section ───────────────────────────────── */
.form-section {
  background: var(--night-soft);
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(237, 232, 220, 0.38); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--night);
  border: 0.5px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  font-family: var(--font);
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input::placeholder, textarea::placeholder { color: rgba(201, 168, 76, 0.22); }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(201, 168, 76, 0.5); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.05); }
select option { background: #0D0D1E; color: var(--cream); }
textarea { min-height: 88px; resize: vertical; }

/* ── Qty ────────────────────────────────────────── */
.qty-ctrl { display: flex; align-items: center; gap: 16px; }
.qty-btn { width: 36px; height: 36px; background: var(--night); border: 0.5px solid rgba(201, 168, 76, 0.16); border-radius: var(--radius-sm); color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.18s; }
.qty-btn svg { width: 15px; height: 15px; stroke-width: 2; }
.qty-btn:hover { border-color: rgba(201, 168, 76, 0.5); }
.qty-num { font-size: 22px; font-weight: 600; color: var(--cream); min-width: 32px; text-align: center; }

/* ── Summary ────────────────────────────────────── */
.summary-box {
  background: var(--night-soft);
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.summary-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent); }
.summary-box .summary-label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin: 0 0 14px 0; opacity: 0.6; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 400; color: var(--muted); margin-bottom: 8px; }
.summary-row.total { font-size: 17px; font-weight: 700; color: var(--gold); border-top: 0.5px solid var(--gold-dim); padding-top: 12px; margin-top: 8px; margin-bottom: 0; }

/* ── Info badge ─────────────────────────────────── */
.info-badge { border-left: 1.5px solid rgba(201, 168, 76, 0.4); padding: 10px 14px; font-size: 13px; font-weight: 400; color: var(--muted); margin-bottom: 1.5rem; background: var(--gold-glow); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; line-height: 1.7; }

/* ── Buttons ────────────────────────────────────── */
.btn-primary {
  width: 100%;
  padding: 13px 20px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--night);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.btn-primary svg { width: 13px; height: 13px; stroke-width: 2.5; flex-shrink: 0; }
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28); }
.btn-primary:active { transform: scale(0.99); }
.btn-primary:disabled { opacity: 0.28; cursor: not-allowed; }

.btn-back {
  background: transparent;
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}
.btn-back svg { width: 12px; height: 12px; stroke-width: 2; }
.btn-back:hover { border-color: rgba(201, 168, 76, 0.4); color: rgba(237, 232, 220, 0.7); }

/* ── Step indicator ─────────────────────────────── */
.step-indicator { display: flex; align-items: center; gap: 8px; margin-bottom: 1.75rem; }
.step-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; transition: all 0.25s; }
.step-dot.active { width: 18px; border-radius: 3px; background: var(--gold); }
.step-dot.done { background: rgba(201, 168, 76, 0.4); }
.step-line { height: 0.5px; flex: 1; background: rgba(255,255,255,0.06); }

/* ── Concours cards ─────────────────────────────── */
.concours-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.5rem; }
.concours-card {
  background: var(--card);
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.concours-card:hover { border-color: rgba(201, 168, 76, 0.45); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1); }
.concours-card.selected { border: 1px solid var(--gold); background: rgba(16, 16, 32, 0.95); }

.concours-icon-box { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-glow); border: 0.5px solid var(--gold-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--gold); transition: all 0.2s; }
.concours-icon-box svg { width: 20px; height: 20px; stroke-width: 1.5; }
.concours-card.selected .concours-icon-box { background: rgba(201, 168, 76, 0.1); border-color: rgba(201, 168, 76, 0.5); }
.concours-card h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--cream); margin: 0 0 6px 0; }
.concours-card p { font-size: 13px; font-weight: 400; color: var(--muted); margin: 0; }

/* ── Success screen ─────────────────────────────── */
.success-screen { text-align: center; padding: 3rem 1rem; }
.success-icon-box {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.25));
}
.success-icon-box svg { width: 26px; height: 26px; stroke-width: 1.5; }
.success-screen h2 { font-size: 20px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin: 0 0 0.75rem 0; }
.success-screen p { font-size: 14px; font-weight: 400; color: var(--muted); max-width: 380px; margin: 0 auto 1.5rem; line-height: 1.8; }
.ticket-ref {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ticket-ref svg { width: 12px; height: 12px; stroke-width: 2; opacity: 0.5; }

/* ── Error / Spinner ────────────────────────────── */
.error-msg { color: #E57373; font-size: 13px; margin-top: 8px; display: none; margin-bottom: 0.75rem; }
.error-msg.visible { display: block; }
.spinner { display: inline-block; width: 13px; height: 13px; border: 2px solid rgba(7,7,15,0.2); border-top-color: var(--night); border-radius: 50%; animation: spin 0.6s linear infinite; flex-shrink: 0; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.required { color: rgba(229, 115, 115, 0.65); }

/* ── Admin link ─────────────────────────────────── */
.admin-link-wrap {
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.admin-link {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(237, 232, 220, 0.1);
  text-decoration: none;
  transition: color 0.2s;
}
.admin-link:hover {
  color: rgba(237, 232, 220, 0.35);
}

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── hero-poster-img : caché par défaut (desktop utilise hero-bg) */
.hero-poster-img { display: none; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 540px) {
  /* Sur mobile : layout vertical — affiche pleine largeur en haut, CTA en bas */
  .hero-section {
    min-height: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
  }

  /* Fond CSS désactivé sur mobile (remplacé par <img>) */
  .hero-bg { display: none; }
  .hero-overlay { display: none; }
  .scroll-cue { display: none; }
  .corner-ornament { display: none; }

  /* L'affiche s'affiche pleine largeur, hauteur naturelle, lisible */
  .hero-poster-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: 34px;
  }

  /* Zone CTA sous l'affiche avec fondu en haut */
  .hero-content {
    position: relative;
    z-index: 4;
    align-self: auto;
    width: 100%;
    padding: 1.75rem 1.25rem 2.5rem;
    background: linear-gradient(to bottom, rgba(7,7,15,0.5) 0%, var(--night) 28%);
    margin-top: -3.5rem;
    text-align: center;
  }

  .hero-org { font-size: 8px; letter-spacing: 2.5px; margin-bottom: 0.5rem; }
  .hero-tagline { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 1.5rem; }

  /* Boutons empilés pleine largeur */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-cta-gold, .btn-cta-ghost { width: 100%; justify-content: center; padding: 13px 20px; }

  /* Stars sur l'image */
  .stars-container { position: absolute; z-index: 2; }

  /* Reste */
  .concours-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 2rem 1rem 3rem; }
}

/* ═══════════════════════════════════════════════════
   LEGACY .hero — admin.html only
═══════════════════════════════════════════════════ */
.hero {
  background: #0D0D1E;
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%); pointer-events: none; }
.hero h1 { font-size: 28px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase; color: var(--cream); position: relative; margin: 0 0 0.5rem 0; }
.hero-eyebrow { font-size: 9.5px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin: 0 0 1.25rem 0; opacity: 0.65; display: block; position: relative; }
.hero-divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 1.25rem; opacity: 0.55; position: relative; }
.hero-sub { font-size: 9.5px; font-weight: 500; color: rgba(237,232,220,0.3); letter-spacing: 3px; margin: 0; text-transform: uppercase; display: block; position: relative; }

/* ═══════════════════════════════════════════════════
   VISUELS — Affiche & Programme côte à côte
═══════════════════════════════════════════════════ */
.visuels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2.5rem;
}
.visuel-block {
  background: var(--night-soft);
  border: 0.5px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.visuel-block .section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem 0;
  opacity: 0.7;
}
.visuel-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--gold-dim);
  object-fit: contain;
}

@media (max-width: 540px) {
  .visuels-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════ */
.visuel-block img { cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.visuel-block img:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(201, 168, 76, 0.18); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.15); }

/* ═══════════════════════════════════════════════════
   UPLOAD ZONES — Photo & Vidéo
═══════════════════════════════════════════════════ */

.field-hint {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.65;
  letter-spacing: 0.5px;
}

.upload-zone {
  position: relative;
  border: 1.5px dashed var(--gold-dim);
  border-radius: var(--radius-md);
  background: var(--night-soft);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-zone:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1.5rem 1rem;
  color: var(--muted);
  pointer-events: none;
}
.upload-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  opacity: 0.5;
}
.upload-placeholder span {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
}
.upload-placeholder small {
  font-size: 10.5px;
  color: var(--muted);
}

/* Photo preview */
.upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.upload-preview img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}
.upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(7, 7, 15, 0.85);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  pointer-events: all;
  transition: background 0.2s, border-color 0.2s;
  z-index: 3;
}
.upload-remove:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}
.upload-remove svg {
  width: 14px;
  height: 14px;
}

/* Video preview */
.upload-zone-video { min-height: 90px; }
.upload-preview-video {
  flex-direction: row;
  gap: 10px;
  padding: 1rem 1.25rem;
  justify-content: flex-start;
}
.upload-preview-video svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.upload-preview-video span {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.upload-error {
  font-size: 11.5px;
  color: #e05555;
  margin-top: 6px;
  min-height: 16px;
}

/* ── Note champ téléphone ───────────────────────── */
.field-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 7px;
  font-size: 11.5px;
  color: rgba(201, 168, 76, 0.75);
  line-height: 1.5;
}
.field-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

/* ── Notice frais d'inscription (succès) ────────── */
.frais-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin: 1.25rem auto 0;
  max-width: 480px;
  text-align: left;
}
.frais-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 2px;
}
.frais-notice strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.frais-notice p {
  font-size: 12px;
  color: rgba(237, 232, 220, 0.75);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   MON TICKET — Lookup & Ticket visuel
═══════════════════════════════════════════════════ */

.lookup-form {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.lookup-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.lookup-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lookup-input-row input::placeholder {
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.4;
}

.lookup-input-row input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.btn-lookup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--night);
  border: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  flex-shrink: 0;
}

.btn-lookup svg { width: 15px; height: 15px; stroke-width: 2.2; }
.btn-lookup:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3); }
.btn-lookup:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Ticket visuel ──────────────────────────────── */

.event-ticket {
  display: flex;
  max-width: 640px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #0e0e1e 0%, #14142a 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.12), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ticket-left {
  flex: 1;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ticket-event-badge {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ticket-org {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-separator-thin {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  margin: 0.1rem 0;
}

.ticket-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-label {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
}

.ticket-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  width: fit-content;
  margin-top: 0.25rem;
}

.ticket-status-badge svg { width: 12px; height: 12px; stroke: #2ecc71; stroke-width: 2.5; }

/* ── Séparateur perforé ─────────────────────────── */

.ticket-perf {
  width: 1px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-notch {
  width: 20px;
  height: 20px;
  background: var(--night);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.ticket-notch-top  { margin-top: -10px; }
.ticket-notch-bottom { margin-bottom: -10px; }

.ticket-dash-line {
  flex: 1;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(201, 168, 76, 0.35) 0px,
    rgba(201, 168, 76, 0.35) 5px,
    transparent 5px,
    transparent 10px
  );
}

/* ── Partie droite : QR ─────────────────────────── */

.ticket-right {
  width: 175px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.04);
}

.ticket-qr {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  line-height: 0;
}

.ticket-qr canvas,
.ticket-qr img { display: block; border-radius: 4px; }

.ticket-ref-val {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-align: center;
}

.ticket-scan-hint {
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Actions sous le ticket ─────────────────────── */

.ticket-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-secondary-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary-gold svg { width: 14px; height: 14px; }
.btn-secondary-gold:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.07); }

/* ── Responsive ticket ──────────────────────────── */
@media (max-width: 520px) {
  .event-ticket { flex-direction: column; max-width: 100%; }
  .ticket-perf { width: 100%; height: 1px; flex-direction: row; }
  .ticket-notch-top  { margin-top: 0; margin-left: -10px; }
  .ticket-notch-bottom { margin-bottom: 0; margin-right: -10px; }
  .ticket-dash-line { width: auto; height: 1px; flex: 1; background: repeating-linear-gradient(to right, rgba(201,168,76,0.35) 0px, rgba(201,168,76,0.35) 5px, transparent 5px, transparent 10px); }
  .ticket-right { width: 100%; padding: 1.5rem; }
  .lookup-input-row { flex-direction: column; }
}
