@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;600;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080808;
  --white: #f4f2ee;
  --red: #c8102e;
  --red-dim: rgba(200,16,46,0.12);
  --muted: rgba(244,242,238,0.45);
  --border: rgba(244,242,238,0.1);
  --font-title: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; }
img { display: block; }

.cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--white); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.15s, height 0.15s, background 0.3s; mix-blend-mode: difference; }
.cursor-blob { position: fixed; width: 380px; height: 380px; border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%); transition: transform 0.08s linear, width 0.6s, height 0.6s, background 0.8s; filter: blur(1px); }
body:has(a:hover) .cursor-dot { width: 14px; height: 14px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; border-bottom: 1px solid transparent; transition: border-color 0.4s, background 0.4s; }
nav.scrolled { background: rgba(8,8,8,0.92); backdrop-filter: blur(16px); border-color: var(--border); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 32px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-family: var(--font-body); font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--muted); transition: color 0.2s; cursor: none; }
.nav-links a:hover { color: var(--white); }
.nav-ticket { background: var(--red) !important; color: var(--white) !important; padding: 8px 20px; font-size: 12px !important; letter-spacing: 0.1em !important; text-transform: uppercase; font-family: var(--font-title) !important; font-weight: 600 !important; cursor: none; }
.nav-ticket:hover { opacity: 0.85; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.page-section { padding: 120px 0; }
.label-sm { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.title-xl { font-family: var(--font-title); font-size: clamp(32px, 5vw, 72px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.title-lg { font-family: var(--font-title); font-size: clamp(24px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.title-md { font-family: var(--font-title); font-size: clamp(18px, 2.5vw, 28px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.body-lg { font-size: 17px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.body-md { font-size: 14px; color: var(--muted); line-height: 1.65; }
.divider { height: 1px; background: var(--border); margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

.btn { display: inline-block; font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 13px 28px; border: 1px solid var(--border); background: transparent; color: var(--white); cursor: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.btn:hover { border-color: var(--white); background: transparent; }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: #a50d26; border-color: #a50d26; }

.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(8,8,8,0.85); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #111; border: 1px solid var(--border); width: 460px; max-width: calc(100vw - 32px); padding: 0; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.modal-overlay.open .modal-box { transform: none; }
.modal-header { padding: 32px 36px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 20px; cursor: none; line-height: 1; transition: color 0.2s; padding: 0; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 28px 36px 36px; }
.modal-event-name { font-family: var(--font-title); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.modal-event-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.modal-cta-row { display: flex; flex-direction: column; gap: 10px; }
.modal-shotgun-btn { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: var(--red); border: none; color: var(--white); text-decoration: none; cursor: none; transition: background 0.2s; }
.modal-shotgun-btn:hover { background: #a50d26; }
.modal-shotgun-left { display: flex; flex-direction: column; gap: 2px; }
.modal-shotgun-name { font-family: var(--font-title); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.modal-shotgun-desc { font-size: 12px; opacity: 0.7; }
.modal-arrow { font-size: 18px; }
.modal-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.5; }

.photo-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.tag { display: inline-block; font-size: 10px; font-family: var(--font-title); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--border); color: var(--muted); }
.tag-red { border-color: var(--red); color: var(--red); }

/* ── SPONSORS MARQUEE ────────────────────── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sponsors-marquee { overflow: hidden; padding: 28px 0; border-bottom: 1px solid var(--border); position: relative; }
.sponsors-marquee::before, .sponsors-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.sponsors-marquee::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.sponsors-marquee::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.sponsors-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.sponsors-marquee:hover .sponsors-track { animation-play-state: paused; }
.sponsor-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; text-decoration: none; cursor: none; transition: opacity 0.2s; }
.sponsor-item:hover { opacity: 1; }
.sponsor-logo-ph { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--muted); flex-shrink: 0; background: rgba(244,242,238,0.03); }
.sponsor-item-name { font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,242,238,0.4); white-space: nowrap; transition: color 0.2s; }
.sponsor-item:hover .sponsor-item-name { color: var(--white); }

/* ── FOOTER ──────────────────────────────── */
footer { padding: 48px 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
.footer-logo img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 14px; opacity: 0.8; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; min-height: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(244,242,238,0.55); text-decoration: none; transition: color 0.2s; cursor: none; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-bottom-right { display: flex; align-items: center; gap: 20px; }
.footer-legal-link { font-size: 11px; color: rgba(244,242,238,0.4); text-decoration: none; transition: color 0.2s; cursor: none; }
.footer-legal-link:hover { color: var(--white); }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { font-size: 11px; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; cursor: none; transition: color 0.2s; }
.footer-socials a:hover { color: var(--white); }

/* ── LANGUE TOGGLE ────────────────────────── */
.nav-lang { background: none; border: 1px solid var(--border); color: var(--muted); font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; padding: 5px 10px; cursor: none; transition: color 0.2s, border-color 0.2s; text-transform: uppercase; }
.nav-lang:hover { color: var(--white); border-color: rgba(244,242,238,0.4); }

/* ── HAMBURGER NAV ────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MENTIONS LÉGALES PAGE ─────────────────── */
.legal-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: var(--font-title); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 20px; }
.legal-section h3 { font-family: var(--font-title); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); margin: 20px 0 10px; text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; }
.legal-section p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.legal-section p strong { color: var(--white); font-weight: 500; }
.legal-section a { color: rgba(244,242,238,0.6); transition: color 0.2s; }
.legal-section a:hover { color: var(--white); }
.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px; border: 1px solid var(--border); font-size: 13px; }
.legal-table th { font-family: var(--font-body); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
.legal-table td { color: rgba(244,242,238,0.7); }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(244,242,238,0.06); }
  .nav-links a { display: block; padding: 13px 0; font-size: 15px; }
  .nav-lang {
    display: block;
    width: 100%;
    text-align: left;
    padding: 13px 0;
    font-size: 15px;
    border: none;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .page-section { padding: 72px 0; }
  /* Footer: 2-col grid on tablet */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-blob { display: none; }
}

@media (max-width: 520px) {
  /* Footer: single column on phone */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-right { flex-wrap: wrap; gap: 12px; }
}
