*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 32px 20px 130px;
}

/* ── Logo ── */
.hero__logo {
  width: min(520px, 80vw);
  height: auto;
  margin-bottom: 32px;
}

/* ── Tabs ── */
.tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  padding: 12px 28px;
  color: rgba(255,255,255,0.35);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: rgba(255,255,255,0.7); }
.tab-btn.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* ── Panels avec fade ── */
.tab-panel {
  display: none;
  width: 100%;
  opacity: 0;
}
.tab-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section label ── */
.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
}

/* ── EP hero ── */
.ep-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.ep-hero__cover {
  width: min(320px, 78vw);
  height: auto;
  border-radius: 6px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(0,0,0,0.7),
    0 0 80px rgba(255,255,255,0.04);
}

.ep-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.ep-hero__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Syne', sans-serif;
}

.ep-hero__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.ep-listen {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.ep-listen:hover { background: #fff; color: #000; border-color: #fff; }

/* ── Event card ── */
.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.event__divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.event__divider::before,
.event__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.event__poster {
  display: block;
  width: min(300px, 80vw);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.event__poster:hover { transform: scale(1.01); }
.event__poster img { width: 100%; height: auto; display: block; }

.event__info { text-align: center; display: flex; flex-direction: column; gap: 5px; }

.event__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.event__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Syne', sans-serif;
}

.event__meta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn:hover, .btn:focus-visible {
  background: #fff; color: #000; border-color: #fff; outline: none;
}

.btn--filled {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn--filled:hover, .btn--filled:focus-visible {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.85);
  color: #000;
}

/* ── Vidéos ── */
.video-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  align-items: center;
}

.video-block__label {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-block__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Syne', sans-serif;
}

.video-block__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.video-wrapper {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
}
.video-wrapper iframe {
  width: 100%; height: 100%; display: block; border: none;
}

/* ── Grille C19 (2 colonnes desktop) ── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}

@media (min-width: 680px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .video-grid .video-block__title { font-size: 11px; }
}

/* ── Section intro (Quasar Sessions & C19) ── */
.section-intro {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.section-intro__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Syne', sans-serif;
  text-align: center;
}

.section-intro__sub {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.section-intro__desc a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color 0.2s;
}
.section-intro__desc a:hover { text-decoration-color: #fff; }

.section-intro__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  text-align: center;
  margin-top: 6px;
}

/* ── À propos éditorial ── */
.about {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.about__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
}

.about__rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin-top: 28px;
}

.about__pull {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}

.about__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about__footer-year {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── Barre fixe en bas ── */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 13px 20px 17px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  z-index: 100;
}

/* ── Lien plan du site (bottom-bar) ── */
.bottom-bar__sitemap {
  position: absolute;
  right: 20px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.bottom-bar__sitemap:hover { color: rgba(255,255,255,0.5); }

/* ── Page plan du site ── */
.sitemap-page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sitemap-page__title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sitemap-list__item--page > a {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sitemap-list__item--page > a:hover { opacity: 0.65; }

.sitemap-list--sub {
  margin-top: 10px;
  padding-left: 16px;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.sitemap-list--sub li a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.sitemap-list--sub li a:hover { color: rgba(255,255,255,0.85); }

/* ── Q logo fixé ── */
.q-logo {
  position: fixed;
  bottom: 68px;
  right: 20px;
  width: 36px;
  opacity: 0.4;
}
