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

    :root {
      --noir:   #0d0d0d;
      --jaune:  #f5c400;
      --blanc:  #f9f7f2;
      --gris:   #1e1e1e;
      --gris2:  #2a2a2a;
      --r:      4px;
    }

    html { scroll-behavior: smooth; }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 100;
      background: var(--jaune);
      color: var(--noir);
      padding: 10px 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-decoration: none;
    }
    .skip-link:focus {
      left: 12px;
      top: 12px;
    }

    body {
      background: var(--noir);
      color: var(--blanc);
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      line-height: 1.6;
    }

    /* BANDE EN TETE */
    .topbar {
      background: var(--jaune);
      color: var(--noir);
      text-align: center;
      padding: 9px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* HERO */
    .hero {
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 24px 56px;
      position: relative;
      overflow: hidden;
    }

    .page-home .hero {
      padding: 40px 24px 48px;
    }

    .hero-glow {
      position: absolute;
      bottom: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 520px;
      height: 240px;
      background: radial-gradient(ellipse, rgba(245,196,0,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Motif hex SVG discret */
    .hex-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpolygon points='28,2 54,16 54,48 28,62 2,48 2,16' fill='none' stroke='%23f5c400' stroke-width='1.5'/%3E%3C/svg%3E");
      background-size: 56px 64px;
    }

    .hero-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--jaune);
      margin: 0 0 12px;
      position: relative;
      z-index: 2;
    }

    .hero-emblem {
      width: 132px;
      max-width: 36vw;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 0 28px rgba(245,196,0,0.3));
    }

    .hero-emblem img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2.1rem, 6vw, 3.6rem);
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      position: relative;
      z-index: 2;
    }

    .hero h1 .accent { color: var(--jaune); display: block; }

    .divider {
      width: 44px;
      height: 3px;
      background: var(--jaune);
      margin: 20px auto;
      position: relative;
      z-index: 2;
    }

    .hero-desc {
      max-width: 420px;
      font-size: 0.98rem;
      color: #bbb;
      position: relative;
      z-index: 2;
      margin: 16px 0 28px;
      line-height: 1.55;
    }

    .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 26px;
      border-radius: var(--r);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.14s ease, box-shadow 0.14s ease;
      cursor: pointer;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--jaune);
      color: var(--noir);
      box-shadow: 0 4px 22px rgba(245,196,0,0.3);
    }
    .btn-primary:hover { box-shadow: 0 8px 36px rgba(245,196,0,0.5); }

    .btn-outline {
      background: transparent;
      color: var(--blanc);
      border: 2px solid rgba(255,255,255,0.2);
    }
    .btn-outline:hover { border-color: var(--jaune); color: var(--jaune); }

    /* SECTION */
    .section {
      padding: 72px 24px;
    }

    .section-compact {
      padding: 48px 24px;
    }

    .page-home .section h2 {
      margin-bottom: 24px;
      font-size: clamp(1.7rem, 4vw, 2.4rem);
    }

    .section-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .page-section h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
}

.section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--jaune);
      margin-bottom: 10px;
      display: block;
    }

    .section h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 5vw, 3.2rem);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 40px;
    }

    /* EQUIPES */
    .section-equipes { background: var(--gris); }

    .teams-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 10px;
    }

    .teams-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }

    .team-chip {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--jaune);
      background: #121212;
      border: 1px solid #2a2a2a;
      border-radius: var(--r);
      padding: 12px 16px;
      transition: border-color 0.15s ease, color 0.15s ease;
    }

    .team-chip:hover {
      border-color: var(--jaune);
      color: var(--blanc);
    }

    .team-card {
      background: #121212;
      border-radius: var(--r);
      padding: 18px 12px;
      text-align: center;
      border-top: 3px solid var(--gris2);
      transition: border-color 0.18s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .team-card:hover { border-color: var(--jaune); }

    .team-card .cat {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.65rem;
      color: var(--jaune);
      line-height: 1;
    }
    .team-card .name {
      font-size: 0.72rem;
      color: #666;
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* REJOINDRE */
    .section-rejoindre {
      text-align: center;
    }

    .rejoindre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 640px;
      margin: 0 auto;
    }

    @media (max-width: 480px) {
      .rejoindre-grid { grid-template-columns: 1fr; }
    }

    .rejoindre-card {
      background: var(--gris);
      border-radius: var(--r);
      padding: 24px 20px;
      border: 1px solid #2a2a2a;
      transition: border-color 0.18s;
    }
    .rejoindre-card:hover { border-color: var(--jaune); }

    .rejoindre-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .rejoindre-card p {
      font-size: 0.88rem;
      color: #888;
      margin-bottom: 16px;
    }

    .home-contact {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
      justify-content: center;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid #2a2a2a;
      font-size: 0.92rem;
      color: #888;
    }

    .home-contact a {
      color: var(--jaune);
      text-decoration: none;
    }

    .home-contact a:hover {
      text-decoration: underline;
    }

    .news-grid-home {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      max-width: 700px;
      margin: 0 auto;
    }

    /* CONTACT */
    .section-contact {
      background: var(--gris);
      text-align: center;
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-top: 0;
    }

    .contact-item {
      background: #121212;
      border-radius: var(--r);
      padding: 20px 28px;
      font-size: 0.95rem;
      color: #ccc;
    }

    .contact-item strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--jaune);
      margin-bottom: 4px;
    }

    .contact-item a {
      color: #ccc;
      text-decoration: none;
    }
    .contact-item a:hover { color: var(--jaune); }

    /* FOOTER */
    footer {
      background: #080808;
      padding: 32px 24px;
      text-align: center;
      border-top: 1px solid #1a1a1a;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #555;
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--jaune); }

    footer p {
      font-size: 0.78rem;
      color: #444;
    }

    /* SCROLL ARROW */
    .scroll-hint {
      display: none;
    }

    /* RESPONSIVE */
    @media (max-width: 600px) {
      .hero { padding: 32px 20px 40px; }
      .section { padding: 52px 20px; }
      .section-compact { padding: 40px 20px; }
      .hero-emblem { width: 112px; }
    }

/* ── ACTUALITÉS ── */
.section-news {
  background: var(--noir);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -16px 0 32px;
}

.news-filter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #777;
  border: 1px solid #2a2a2a;
  padding: 8px 14px;
  border-radius: var(--r);
}

.news-filter:hover,
.news-filter.is-active {
  color: var(--jaune);
  border-color: var(--jaune);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.news-card {
  background: var(--gris);
  border: 1px solid #2a2a2a;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #121212;
}

.news-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
}

.news-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.news-card h3 a {
  color: var(--blanc);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--jaune);
}

.news-card p {
  color: #888;
  font-size: 0.92rem;
  flex: 1;
}

.news-more {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jaune);
  text-decoration: none;
  font-size: 0.9rem;
}

.news-more:hover {
  text-decoration: underline;
}

.news-all {
  margin-top: 28px;
  text-align: center;
}

.news-empty {
  color: #888;
  margin-bottom: 20px;
}

.article-inner {
  max-width: 720px;
}

.article-back {
  display: inline-block;
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  text-decoration: none;
  font-size: 0.85rem;
}

.article-back:hover {
  color: var(--jaune);
}

.article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 16px 0 28px;
}

.article-cover {
  margin-bottom: 28px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.article-cover picture {
  display: block;
}

.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content a,
.article-content a:link,
.article-content a:visited {
  color: var(--jaune);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover,
.article-content a:focus-visible {
  color: var(--blanc);
}

.article-related {
  margin-top: 36px;
}

.news-meta a {
  color: var(--jaune);
  text-decoration: none;
}

.news-meta a:hover {
  text-decoration: underline;
}

/* ── HEADER SITE ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

.site-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--jaune);
}

.page-section {
  padding-top: 56px;
}

.page-intro {
  color: #999;
  max-width: 560px;
  margin: -20px 0 36px;
  font-size: 1.02rem;
}

.section-cta {
  justify-content: flex-start;
  margin-top: 8px;
}

.sections-list {
  display: grid;
  gap: 10px;
}

.section-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: var(--r);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

.section-row:hover {
  border-color: var(--jaune);
}

.section-row-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--jaune);
  line-height: 1;
}

.section-row-desc {
  color: #888;
  font-size: 0.92rem;
}

.section-row-go {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  font-size: 0.85rem;
}

.section-row:hover .section-row-go {
  color: var(--jaune);
}

@media (max-width: 700px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
