/* =====================================================================
   Volley Club de Tubize — Site saison 2026-2027
   Version WEB, mobile-first. Palette & dégradés en variables CSS.
   Décorations = vrais assets (/assets/images/deco) + CSS.
   ===================================================================== */

/* ------------------------- 0. Tokens ------------------------- */
:root {
  /* Bleus — alignés sur la charte graphique du club */
  --navy: #081B5C;         /* institutionnel */
  --club-blue: #0A63C8;    /* bleu royal / dynamique */
  --electric-blue: #22A2F2;/* bleu azur / accent lumineux */
  --ice-blue: #D9ECFF;     /* bleu clair / fond léger */
  --gray-soft: #F4F6FA;    /* gris très clair */
  --border: #D0D5DD;
  --muted: #475467;        /* texte secondaire */
  /* Roses — accent qui COMPLÈTE la charte bleue */
  --pink: #F3B6D6;
  --hot-pink: #E875B5;
  --pale-pink: #F8DCEB;
  --mauve: #7A6FB3;
  --white-cold: #FFFFFF;
  --anthracite: #1F2937;

  --primary-gradient: linear-gradient(135deg, #0A63C8 0%, #22A2F2 32%, #7A6FB3 64%, #E875B5 100%);
  --soft-gradient: linear-gradient(135deg, #D9ECFF 0%, #D8C3E8 45%, #F3B6D6 100%);
  --dark-gradient: linear-gradient(135deg, #081B5C 0%, #0A63C8 100%);

  --container: 1080px;
  --radius: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(11, 35, 74, .12);
  --shadow-card: 0 8px 26px rgba(11, 35, 74, .09);
  --border-fine: 1px solid var(--border);

  --font-title: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --header-h: 68px;
}

/* ------------------------- 1. Reset ------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 52px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white-cold);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-title); color: var(--navy); }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }

/* ------------------------- 2. Pile sticky : encart sponsors + nav ------------------------- */
.top-stack { position: sticky; top: 0; z-index: 60; }

/* Encart sponsoring qui surmonte la navigation.
   Masqué au chargement, il APPARAÎT après le premier scroll (glisse + fondu). */
.topbar {
  background: #fff; border-bottom: 1px solid var(--border);
  height: 44px; display: flex; align-items: center; overflow: hidden;
  max-height: 0; opacity: 0; transform: translateY(-8px);
  border-bottom-color: transparent;
  transition: max-height .4s ease, opacity .35s ease, transform .4s ease, border-color .35s ease;
}
.top-stack.scrolled .topbar {
  max-height: 44px; opacity: 1; transform: none; border-bottom-color: var(--border);
}
/* Masqué quand la grande section sponsors est à l'écran (évite le doublon) */
.top-stack.sponsors-visible .topbar {
  max-height: 0; opacity: 0; transform: translateY(-8px); border-bottom-color: transparent;
}
.topbar__label {
  flex: 0 0 auto; height: 100%; display: flex; align-items: center; gap: 6px;
  padding: 0 14px; background: var(--gray-soft);
  font-family: var(--font-title); font-weight: 800; font-size: 10.5px;
  letter-spacing: .5px; text-transform: uppercase; color: var(--club-blue);
  border-right: 1px solid var(--border); white-space: nowrap;
}
.topbar__label svg { color: var(--hot-pink); }
.topbar .marquee { flex: 1 1 auto; }
@media (max-width: 520px) { .topbar__label span { display: none; } }

.site-header {
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(8, 27, 92, .06);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-header__brand { display: flex; align-items: center; text-decoration: none; flex: none; margin-right: 20px; }
.site-header__brand img { height: 42px; width: auto; }
.site-nav { display: none; gap: 26px; }
.site-nav a {
  color: var(--navy); text-decoration: none; font-family: var(--font-title); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em; font-size: 13.5px;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.site-nav a:hover { color: var(--club-blue); border-color: var(--hot-pink); }
.site-nav a { white-space: nowrap; }
/* Liens à logo : pastille uniforme (logo contenu sans déformation), pour équilibrer
   plusieurs logos de formats différents (Clubee, Kalisport…). */
.site-nav__brand { display: inline-flex; align-items: center; justify-content: center;
  height: 30px; min-width: 48px; padding: 0 10px; border-radius: 8px;
  background: #f3f5f9; border: 1px solid #e5e9f0 !important; border-bottom-color: #e5e9f0 !important; }
.site-nav__brand img { max-height: 19px; max-width: 88px; width: auto; height: auto; object-fit: contain; display: block; }
.site-nav__brand:hover { opacity: 1; background: #e9eef6; border-color: var(--club-blue) !important; }
@media (min-width: 800px) { .site-nav { display: flex; align-items: center; } }

/* ------------------------- 3. Décorations (assets réels) ------------------------- */
.deco { position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: contain; z-index: 0; }
.deco--brush   { background-image: url('/assets/images/deco/brush.png'); }
.deco--splash  { background-image: url('/assets/images/deco/splash.png'); }
.deco--halftone{ background-image: url('/assets/images/deco/halftone.png'); }

/* Ballon SVG flottant */
.ball-watermark { position: absolute; pointer-events: none; z-index: 0; }

/* ------------------------- 4. Hero (web, CLAIR, mobile-first) ------------------------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(165deg, #FFFFFF 0%, #EAF3FD 55%, var(--ice-blue) 100%);
  color: var(--navy);
  padding: 40px 0 48px;
}
/* Éclat diagonal bleu lumineux (charte : diagonale), léger, pas de navy plein cadre */
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -30%; right: -18%; width: 70%; height: 160%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(34, 162, 242, .18), transparent 70%);
  transform: skewX(-14deg);
}
.hero .deco--brush { top: -34px; right: -70px; width: 190px; height: 170px; opacity: .28; }
.hero .deco--halftone { bottom: -50px; left: -60px; width: 200px; height: 200px; opacity: .14; }
@media (min-width: 860px) {
  .hero .deco--brush { top: -40px; right: -40px; width: 320px; height: 280px; opacity: .5; }
  .hero .deco--halftone { width: 240px; height: 240px; opacity: .18; }
}

.hero__grid { position: relative; z-index: 2; display: grid; gap: 26px; align-items: center; }
@media (min-width: 860px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 34px; } }

.hero__inner { text-align: center; }
.hero__club {
  font-family: var(--font-title); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; font-size: 13px; color: var(--club-blue); margin-bottom: 8px;
}
.hero__title {
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  font-size: clamp(38px, 11vw, 82px); line-height: .9; letter-spacing: -1.5px; color: var(--navy);
}
.hero__season {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 14px;
  color: var(--hot-pink); font-family: var(--font-title); font-weight: 800;
  font-size: clamp(15px, 4.5vw, 22px); letter-spacing: 1px; text-transform: uppercase;
}
.hero__season::before, .hero__season::after { content: ""; height: 3px; width: 36px; background: var(--hot-pink); border-radius: 3px; }
.hero__slogan { margin: 24px auto 0; max-width: 400px; }
.hero__slogan img { width: 100%; height: auto; filter: drop-shadow(0 6px 14px rgba(8, 27, 92, .14)); }
.hero__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Visuel de droite : emblème du club (ballon 3D) sur panneau lumineux, ou photo d'action */
.hero__visual {
  position: relative; overflow: hidden;
  border-radius: 26px; aspect-ratio: 4 / 3;
  background: var(--soft-gradient);
  box-shadow: 0 24px 50px rgba(8, 27, 92, .16);
  display: grid; place-items: center;
}
.hero__visual .deco--halftone { top: -30px; right: -30px; width: 200px; height: 200px; opacity: .3; }
.hero__emblem { position: relative; z-index: 2; width: 62%; max-width: 260px; filter: drop-shadow(0 16px 30px rgba(8, 27, 92, .28)); }
.hero__ball { bottom: 10%; left: 8%; width: 74px; height: 74px; z-index: 2; color: var(--club-blue); opacity: .95; filter: drop-shadow(0 8px 16px rgba(8,27,92,.25)); }
/* Image d'action détourée (PNG transparent) : le joueur FLOTTE sur le fond clair,
   pas de cadre, il peut déborder pour du dynamisme. */
.hero__visual--photo {
  aspect-ratio: 3 / 4;
  background: transparent; box-shadow: none; overflow: visible; border-radius: 0;
}
@media (min-width: 860px) { .hero__visual--photo { aspect-ratio: 4 / 5; } }
.hero__action {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  filter: drop-shadow(0 22px 34px rgba(8, 27, 92, .22));
}

@media (min-width: 860px) {
  .hero { padding: 64px 0 72px; }
  .hero__inner { text-align: left; }
  .hero__cta { justify-content: flex-start; }
  .hero__slogan { margin-left: 0; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  font-family: var(--font-title); font-weight: 800; font-size: 14px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .03em;
  min-height: 44px; padding: 12px 26px; border-radius: 999px; border: 0;
  transition: transform .2s, box-shadow .2s, filter .2s, background .2s;
}
.btn--pink { background: var(--hot-pink); color: #fff; box-shadow: 0 8px 20px rgba(232, 117, 181, .4); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.btn--pink:hover { filter: brightness(1.04); }

@media (min-width: 800px) {
  .hero { padding: 70px 0 84px; }
  .hero__inner { text-align: left; max-width: 680px; }
  .hero__logo { margin-left: 0; }
  .hero__cta { justify-content: flex-start; }
  .hero__slogan { margin-left: 0; }
  .hero__ball { width: 120px; height: 120px; top: 60px; }
}

/* ------------------------- 5. Sections (rythme web) ------------------------- */
.section { padding: clamp(40px, 7vw, 72px) 0; position: relative; }
.section--tint { background: var(--gray-soft); }
.section--ice {
  background:
    linear-gradient(180deg, rgba(191,221,245,.35), rgba(191,221,245,.10)),
    url('/assets/images/deco/ice-texture.png') left top / 40% auto no-repeat;
}
.section + .section { border-top: 1px solid rgba(47, 128, 217, .08); }

.grid { display: grid; gap: 22px; }
@media (min-width: 900px) {
  .grid--2 { grid-template-columns: 1fr 1fr; align-items: start; }
  .grid--fees { grid-template-columns: 1.1fr .9fr; }
}

/* =====================================================================
   6. vct-section-title — bandeau de titre de section (sportif, volley)
   Numéro + texte TOUJOURS en HTML ; les images ne servent qu'au décor.
   Variantes : --blue --pink --dark --light --with-action --compact --large
   ===================================================================== */
.vct-section-title {
  /* --- Couleurs (modifiables par variante) --- */
  --vct-main: #0068B0;   /* bleu club   */
  --vct-dark: #0B234A;   /* bleu marine */
  --vct-accent: #009FE3; /* bleu élec.  */
  --vct-soft: #BFDDF5;   /* bleu glacier*/
  --vct-pink: #D96FAE;   /* rose sport  */
  --vct-pink-soft: #F3B6D6;
  --vct-text: #FFFFFF;
  /* couleurs actives du panneau (surchargées par variante) */
  --vct-a: var(--vct-dark); --vct-b: var(--vct-main); --vct-stripe: var(--vct-pink);
  /* --- Dimensions (modifiables) --- */
  --vct-h: 84px;     /* hauteur desktop */
  --vct-ball: 66px;  /* diamètre ballon */
  --vct-slant: 26px; /* découpe diagonale */
  --vct-radius: 14px;

  position: relative; display: flex; align-items: center;
  min-height: var(--vct-h); margin-bottom: 24px; padding-left: 6px;
  isolation: isolate;
}

/* --- Variantes de couleur --- */
.vct-section-title--blue  { --vct-a: var(--vct-dark);  --vct-b: var(--vct-main);      --vct-stripe: var(--vct-pink);   }
.vct-section-title--pink  { --vct-a: var(--vct-pink);  --vct-b: var(--vct-pink-soft); --vct-stripe: var(--vct-accent); }
.vct-section-title--dark  { --vct-a: #071630;          --vct-b: var(--vct-dark);      --vct-stripe: var(--vct-accent); }
.vct-section-title--light { --vct-a: var(--vct-soft);  --vct-b: #E9F2FC;              --vct-stripe: var(--vct-pink); --vct-text: var(--vct-dark); }

/* --- Panneau incliné (::before) + accent (::after) --- */
.vct-section-title::before,
.vct-section-title::after {
  content: ""; position: absolute; z-index: 0; inset: 0 0 0 34px; pointer-events: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--vct-slant)) 100%, 0 100%);
}
.vct-section-title::before {
  background: linear-gradient(120deg, var(--vct-a), var(--vct-b));
  border-radius: 6px var(--vct-radius) var(--vct-radius) 4px;
  box-shadow: 0 8px 20px rgba(11, 35, 74, .22);
}
.vct-section-title::after { /* liseré diagonal d'accent à droite */
  z-index: 1; background: linear-gradient(115deg, transparent 79%, var(--vct-stripe) 79%);
}

/* --- Décors (filet + brush), confinés à la forme du panneau --- */
.vct-section-title__net,
.vct-section-title__brush {
  position: absolute; z-index: 1; inset: 0 0 0 34px; pointer-events: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--vct-slant)) 100%, 0 100%);
}
.vct-section-title__net {
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 15px 15px;
}
.vct-section-title__brush--1 { opacity: .5; background: repeating-linear-gradient(114deg, transparent 0 9px, rgba(255,255,255,.14) 9px 12px, transparent 12px 22px); }
.vct-section-title__brush--2 { opacity: .35; background: repeating-linear-gradient(114deg, transparent 0 18px, rgba(255,255,255,.10) 18px 20px, transparent 20px 40px); }
.vct-section-title--light .vct-section-title__net { opacity: .18; background-image: linear-gradient(rgba(11,35,74,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(11,35,74,.35) 1px, transparent 1px); }

/* --- Ballon + numéro (le chiffre reste en HTML) --- */
.vct-section-title__number {
  position: relative; z-index: 3; flex: 0 0 auto;
  width: var(--vct-ball); height: var(--vct-ball);
  margin-right: calc(var(--vct-ball) * -0.28);
  background: url('/assets/sections/ball-volley.svg') center / contain no-repeat;
  display: grid; place-items: center;
  filter: drop-shadow(0 6px 14px rgba(11, 35, 74, .30));
}
/* Pastille blanche centrale : le numéro reste net, intégré au ballon */
.vct-section-title__number::before {
  content: ""; position: absolute; inset: 26%; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(11, 35, 74, .22), inset 0 0 0 1.5px rgba(11, 35, 74, .10);
}
.vct-section-title__number span {
  position: relative; z-index: 2;
  font-family: var(--font-title); font-weight: 900; line-height: 1;
  font-size: calc(var(--vct-ball) * .40); color: var(--vct-dark);
}

/* --- Contenu / titre --- */
.vct-section-title__content { position: relative; z-index: 2; flex: 1 1 auto; min-width: 0; padding: 8px 44px 8px 46px; }
.vct-section-title__text {
  margin: 0; color: var(--vct-text);
  font-family: var(--font-title); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.05;
  font-size: clamp(15px, 3.6vw, 23px); text-shadow: 0 2px 6px rgba(11, 35, 74, .22);
}
.vct-section-title--light .vct-section-title__text { text-shadow: none; }

/* --- Tailles --- */
.vct-section-title--compact { --vct-h: 60px; --vct-ball: 50px; margin-bottom: 16px; }
.vct-section-title--compact .vct-section-title__text { font-size: clamp(14px, 3vw, 18px); }
.vct-section-title--large   { --vct-h: 104px; --vct-ball: 84px; }
.vct-section-title--large .vct-section-title__text { font-size: clamp(20px, 4.6vw, 30px); }

/* --- Variante WITH-ACTION : le décor (ballon + joueurs + panneau + brush)
       vient de l'image ; on ne pose que le numéro + le texte par-dessus. --- */
.vct-section-title--with-action {
  min-height: 0; padding: 0; overflow: hidden; border-radius: var(--vct-radius);
  aspect-ratio: 1998 / 685;
  background: var(--vct-action) center / cover no-repeat;
  container-type: inline-size;
}
.vct-section-title--with-action::before,
.vct-section-title--with-action::after,
.vct-section-title--with-action .vct-section-title__net,
.vct-section-title--with-action .vct-section-title__brush { display: none; }
.vct-section-title--with-action .vct-section-title__number {
  position: absolute; left: 9.4%; top: 49%; transform: translate(-50%, -50%);
  width: auto; height: auto; margin: 0; background: none; filter: none; z-index: 3;
}
.vct-section-title--with-action .vct-section-title__number span {
  font-size: 7.4cqw; color: var(--vct-dark); text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
.vct-section-title--with-action .vct-section-title__content {
  position: absolute; left: 16.5%; top: 50%; transform: translateY(-50%);
  max-width: 40%; padding: 0; z-index: 2;
}
.vct-section-title--with-action .vct-section-title__text { color: #fff; font-size: 5.2cqw; text-shadow: 0 2px 8px rgba(0,0,0,.35); }

/* --- Micro-animation au survol (desktop, respecte reduced-motion) --- */
@media (hover: hover) and (min-width: 800px) {
  .vct-section-title { transition: transform .25s ease; }
  .vct-section-title__number { transition: transform .3s ease; }
  .vct-section-title:hover { transform: translateY(-1px); }
  .vct-section-title:not(.vct-section-title--with-action):hover .vct-section-title__number { transform: rotate(-10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .vct-section-title, .vct-section-title__number { transition: none !important; }
  .vct-section-title:hover, .vct-section-title:hover .vct-section-title__number { transform: none !important; }
}

/* --- Responsive --- */
@media (max-width: 720px) { .vct-section-title { --vct-h: 64px; --vct-ball: 54px; } }
@media (max-width: 640px) {
  /* En mobile, la variante action retombe sur le bandeau CSS (joueurs masqués) */
  .vct-section-title--with-action {
    aspect-ratio: auto; min-height: var(--vct-h); background: none;
    container-type: normal; padding-left: 6px; overflow: visible; border-radius: 0;
  }
  .vct-section-title--with-action::before,
  .vct-section-title--with-action::after,
  .vct-section-title--with-action .vct-section-title__net,
  .vct-section-title--with-action .vct-section-title__brush { display: block; }
  .vct-section-title--with-action .vct-section-title__number {
    position: relative; left: auto; top: auto; transform: none;
    width: var(--vct-ball); height: var(--vct-ball); margin-right: calc(var(--vct-ball) * -0.28);
    background: url('/assets/sections/ball-volley.svg') center / contain no-repeat;
  }
  .vct-section-title--with-action .vct-section-title__number span { font-size: calc(var(--vct-ball) * .42); color: var(--vct-dark); text-shadow: none; }
  .vct-section-title--with-action .vct-section-title__content { position: relative; left: auto; top: auto; transform: none; max-width: none; padding: 8px 40px 8px 46px; }
  .vct-section-title--with-action .vct-section-title__text { font-size: clamp(15px, 4.4vw, 20px); text-shadow: 0 2px 6px rgba(11,35,74,.22); }
}

/* ------------------------- 7. TrainingScheduleTable ------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); -webkit-overflow-scrolling: touch; }
.table-hint { font-size: 12px; color: var(--electric-blue); margin: 0 0 8px; font-weight: 600; }
@media (min-width: 720px) { .table-hint { display: none; } }
.schedule {
  min-width: 680px; border: 2px solid var(--electric-blue); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-card); font-size: 13.5px; background: #fff;
}
.schedule thead th {
  background: var(--club-blue); color: #fff; font-family: var(--font-title); font-weight: 700;
  text-transform: uppercase; font-size: 12px; letter-spacing: .3px; padding: 11px 12px; text-align: left;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.schedule tbody td {
  padding: 10px 12px; border-right: 1px solid rgba(47, 128, 217, .16); border-top: 1px solid rgba(47, 128, 217, .1);
  color: var(--anthracite);
}
.schedule tbody tr:nth-child(odd) { background: rgba(191, 221, 245, .16); }
.schedule .team { font-weight: 800; color: var(--navy); font-family: var(--font-title); white-space: nowrap; }
.schedule .muted { color: rgba(31, 41, 55, .4); }
.schedule .venue { font-weight: 700; color: var(--electric-blue); }

.schedule-foot { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.schedule-foot .notes { margin-top: 0; flex: 1 1 320px; }
.clubee-cta { flex: 0 0 auto; font-size: 13px; padding: 11px 20px; min-height: 42px; }
.notes { margin-top: 14px; display: grid; gap: 7px; }
.notes li { position: relative; padding-left: 18px; font-size: 13px; color: var(--navy); }
.notes li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--hot-pink); }

/* ------------------------- 8. FeesCard ------------------------- */
.fees { background: #fff; border: 2px solid var(--pink); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.fees__head { background: linear-gradient(135deg, var(--hot-pink), var(--pink)); color: #fff; font-family: var(--font-title); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 13px 18px; font-size: 15px; }
.fees table { font-size: 13.5px; }
.fees thead th { text-align: left; padding: 10px 16px; color: var(--navy); font-family: var(--font-title); font-size: 11.5px; text-transform: uppercase; letter-spacing: .3px; background: rgba(243, 182, 214, .18); border-bottom: 1px solid rgba(232, 117, 181, .25); }
.fees tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(243, 182, 214, .3); vertical-align: middle; }
.fees tbody tr:last-child td { border-bottom: 0; }
.fees .cat { font-weight: 700; color: var(--navy); }
/* Tarif + paiement anticipé centrés (catégorie reste à gauche) */
.fees thead th:not(:first-child), .fees tbody td:not(.cat) { text-align: center; }
.fees .amount { font-family: var(--font-title); font-weight: 800; font-size: 19px; color: var(--navy); white-space: nowrap; }
.fee-early { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.fee-early__label { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.fee-early__price {
  white-space: nowrap;
  background: var(--pale-pink); color: var(--hot-pink);
  font-family: var(--font-title); font-weight: 800; font-size: 15px;
  padding: 3px 12px; border-radius: 999px;
}
.fees__family { margin: 4px 14px 16px; padding: 12px 14px; background: var(--pale-pink); border: 1px solid rgba(232, 117, 181, .35); border-radius: var(--radius-sm); font-size: 12.5px; color: var(--navy); }
.fees__family b { color: var(--hot-pink); }

/* ------------------------- 9. PaymentBlock ------------------------- */
.payment { position: relative; overflow: hidden; background: var(--dark-gradient); border-radius: var(--radius); color: #fff; padding: 22px; box-shadow: var(--shadow-card); }
.payment .deco--halftone { bottom: -30px; right: -30px; width: 180px; height: 180px; opacity: .3; }
.payment__title { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 16px; position: relative; z-index: 2; color: #fff; }
.payment__intro { font-size: 13px; color: var(--ice-blue); margin: 4px 0 14px; position: relative; z-index: 2; }
.iban { position: relative; z-index: 2; background: linear-gradient(135deg, #3a90e6, var(--electric-blue)); border-radius: 14px; padding: 15px 12px; text-align: center; font-family: var(--font-title); font-weight: 800; font-size: clamp(19px, 6vw, 30px); letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0, 0, 0, .28); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 8px 20px rgba(47, 128, 217, .35); overflow: hidden; }
.iban::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, .35), transparent 45%); pointer-events: none; }
.comm-list { position: relative; z-index: 2; display: grid; gap: 10px; margin-top: 14px; }
.comm { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 11px 14px; }
.comm__icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.comm__icon--blue { background: var(--electric-blue); }
.comm__icon--pink { background: var(--hot-pink); }
.comm__label { font-size: 12px; font-weight: 700; }
.comm__label--blue { color: var(--electric-blue); }
.comm__label--pink { color: var(--hot-pink); }
.comm__value { font-size: 13.5px; color: var(--navy); font-weight: 600; }

/* ------------------------- 10. InfoUsefulGrid ------------------------- */
.infos-card { background: #fff; border: var(--border-fine); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-card); }
.infos-grid { display: grid; gap: 14px; }
@media (min-width: 620px) { .infos-grid { grid-template-columns: 1fr 1fr; } }
.info-item { display: flex; gap: 12px; align-items: flex-start; background: rgba(191, 221, 245, .22); border: 1px solid rgba(47, 128, 217, .18); border-radius: var(--radius-sm); padding: 13px 14px; transition: transform .2s, box-shadow .2s; }
.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.info-item__icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--electric-blue); color: #fff; display: grid; place-items: center; }
.info-item__text { font-size: 13px; color: var(--navy); }

/* ------------------------- 11. JerseyInfoBlock ------------------------- */
.jersey { display: grid; gap: 18px; }
@media (min-width: 620px) { .jersey { grid-template-columns: 1.3fr .7fr; align-items: stretch; } }
.jersey__list { background: #fff; border: var(--border-fine); border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-card); }
.jersey__list li { position: relative; padding-left: 26px; margin: 10px 0; font-size: 13px; color: var(--navy); }
.jersey__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--hot-pink); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.jersey__panel { background: var(--pale-pink); border: 1px solid rgba(232, 117, 181, .35); border-radius: var(--radius-md); padding: 18px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.jersey__panel h4 { color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.jersey__cost { font-family: var(--font-title); font-weight: 800; font-size: 26px; color: var(--navy); }
.donut { width: 132px; height: 132px; border-radius: 50%; background: conic-gradient(var(--hot-pink) 0 75%, var(--electric-blue) 75% 100%); display: grid; place-items: center; position: relative; }
.donut::before { content: ""; position: absolute; inset: 16px; background: var(--pale-pink); border-radius: 50%; }
.donut__label { position: relative; z-index: 2; text-align: center; line-height: 1.1; }
.donut__pct { font-family: var(--font-title); font-weight: 800; font-size: 24px; color: var(--navy); }
.donut__pct small { display: block; font-size: 10px; font-weight: 600; color: var(--anthracite); }
.jersey__legend { display: flex; gap: 14px; font-size: 11px; color: var(--navy); }
.jersey__legend span { display: inline-flex; align-items: center; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.dot--pink { background: var(--hot-pink); } .dot--blue { background: var(--electric-blue); }
.jersey__part { background: var(--hot-pink); color: #fff; font-family: var(--font-title); font-weight: 800; border-radius: 10px; padding: 7px 14px; font-size: 13px; }

/* ------------------------- 12. UsefulLinksBar (bande pleine largeur, centrée) ------------------------- */
.section--online {
  background: linear-gradient(180deg, #EFF6FE 0%, #E4EFFB 100%);
  border-top: 1px solid rgba(10, 99, 200, .1);
  border-bottom: 1px solid rgba(10, 99, 200, .1);
  padding: 34px 0;
}
.links-bar {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  background: transparent; border: 0; box-shadow: none; padding: 0;
}
.links-bar__title {
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: 13px; color: var(--navy);
}
.links-bar__globe { color: var(--electric-blue); display: inline-flex; }
.links-bar__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.link-chip {
  display: inline-flex; align-items: center; text-decoration: none;
  background: #fff; color: var(--navy);
  font-weight: 600; font-size: 13.5px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(10, 99, 200, .2); box-shadow: 0 3px 10px rgba(8, 27, 92, .06);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  word-break: break-word;
}
.link-chip:hover { background: var(--club-blue); color: #fff; border-color: var(--club-blue); transform: translateY(-2px); }

/* ------------------------- 13. ContactCards ------------------------- */
.contacts { display: grid; gap: 16px; }
@media (min-width: 620px) {
  .contacts { grid-template-columns: repeat(3, 1fr); }
  /* Exactement 4 contacts -> grille 2x2 équilibrée */
  .contacts--quad { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
}
.contact { background: #fff; border: 1px solid rgba(47, 128, 217, .3); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; }
.contact:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact--treasurer { border-color: rgba(232, 117, 181, .5); }
.contact__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--electric-blue); color: #fff; flex: 0 0 auto; }
.contact--treasurer .contact__avatar { background: var(--hot-pink); }
.contact__role { font-family: var(--font-title); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .5px; color: var(--electric-blue); }
.contact--treasurer .contact__role { color: var(--hot-pink); }
.contact__name { font-family: var(--font-title); font-weight: 800; font-size: 16px; color: var(--navy); }
.contact__line { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--anthracite); margin-top: 7px; }
.contact__line a { text-decoration: none; color: var(--club-blue); }
.contact__line a:hover { text-decoration: underline; }
.contact__line svg { color: var(--electric-blue); flex: 0 0 auto; }

/* ------------------------- 14. SponsorsStrip — marquee défilant ------------------------- */
.strip { position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(232, 117, 181, .3); border-radius: var(--radius-md); padding: 26px 0; box-shadow: var(--shadow-card); }
.strip .deco--splash { top: -30px; right: -30px; width: 200px; height: 160px; opacity: .1; z-index: 1; }

/* Hauteur de logo commune (agrandie), responsive */
:root { --logo-h: 72px; }
@media (min-width: 720px) { :root { --logo-h: 104px; } }

.marquee {
  position: relative; z-index: 2; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex; align-items: center; width: max-content;
  gap: 40px; padding: 0 20px;
  animation: marquee 34s linear infinite;
}
@media (min-width: 720px) { .marquee__track { gap: 64px; } }
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.strip__item {
  height: var(--logo-h); flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, filter .2s; text-decoration: none;
}
.strip__item img { height: var(--logo-h); width: auto; max-width: 210px; object-fit: contain; }
a.strip__item:hover { transform: scale(1.07); }

.logo-fallback { display: grid; place-items: center; text-align: center; height: var(--logo-h); border: 1.5px dashed rgba(47, 128, 217, .5); border-radius: 10px; padding: 4px 18px; color: var(--club-blue); background: var(--white-cold); }
.logo-fallback b { font-family: var(--font-title); font-weight: 800; font-size: 13px; letter-spacing: .5px; }
.logo-fallback small { font-size: 10px; color: var(--anthracite); }

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

/* Réduction de mouvement : pas de défilement, logos centrés qui passent à la ligne */
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 26px 40px; }
  .strip__item--dup { display: none; }
}

/* Variante mini (bandeau sticky au-dessus de la nav) — occupe toute la largeur */
.marquee--mini { --logo-h: 30px; }
@media (min-width: 720px) { .marquee--mini { --logo-h: 36px; } }
.marquee--mini .marquee__track { gap: 40px; padding: 0 24px; animation-duration: 40s; }
@media (min-width: 720px) { .marquee--mini .marquee__track { gap: 60px; } }
.marquee--mini .strip__item img { max-width: 150px; }

/* ------------------------- 15. ValuesFooter ------------------------- */
.values { position: relative; overflow: hidden; background: var(--navy); border-radius: var(--radius); padding: 26px 20px; }
.values .deco--brush { bottom: -30px; right: -40px; width: 260px; height: 200px; opacity: .4; }
.values__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 0; }
@media (min-width: 720px) { .values__grid { grid-template-columns: repeat(4, 1fr); } }
.value { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; color: #fff; padding: 4px 8px; border-right: 1px solid rgba(255, 255, 255, .22); }
.value:nth-child(2n) { border-right: 0; }
@media (min-width: 720px) { .value { border-right: 1px solid rgba(255, 255, 255, .3); } .value:last-child { border-right: 0; } }
.value__icon { width: 42px; height: 42px; display: grid; place-items: center; }
.value__label { font-family: var(--font-title); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; line-height: 1.15; color: #fff; }

/* ------------------------- 16. Footer site ------------------------- */
.site-footer { background: linear-gradient(160deg, #0F4AA6 0%, #0B3378 100%); color: #e3ecfb; padding: 46px 0 22px; margin-top: 10px; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-col--brand { max-width: 340px; }
/* Logo original (couleurs) sur panneau blanc -> bien visible */
.footer-logo-wrap { display: inline-flex; background: #fff; border-radius: 18px; padding: 16px 20px; box-shadow: 0 10px 26px rgba(0, 0, 0, .22); margin-bottom: 16px; }
.footer-logo { height: 130px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-title); font-style: italic; font-weight: 700; font-size: 15px; color: #fff; margin: 0; }
.footer-col h4 { color: #fff; font-family: var(--font-title); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: #cfe0f5; text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }

/* Sponsors compacts (pastilles blanches cliquables) */
.footer-sponsors { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); text-align: center; }
.footer-sponsors__label { display: block; font-family: var(--font-title); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .6px; color: #9fb6d6; margin-bottom: 14px; }
.footer-sponsors__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
.footer-sponsor { background: #fff; border-radius: 11px; padding: 8px 16px; height: 58px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.footer-sponsor img { height: 40px; width: auto; max-width: 150px; object-fit: contain; }
.footer-sponsor .logo-fallback { height: 40px; border: 0; padding: 0 6px; background: transparent; }
a.footer-sponsor:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, .25); }

.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; }
.footer-bottom small { color: #7f97b8; font-size: 12px; }
.footer-slogan { font-family: var(--font-title); font-style: italic; font-weight: 800; color: var(--hot-pink); font-size: 15px; }

/* ------------------------- 17. Toolbar (print) ------------------------- */
.toolbar { display: flex; justify-content: center; padding: 18px; }
.btn-print { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--club-blue); border: 1.5px solid rgba(47,128,217,.4); cursor: pointer; font-family: var(--font-title); font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 12px; }
.btn-print:hover { background: rgba(47,128,217,.08); }
.site-footer .btn-print { color: #fff; border-color: rgba(255,255,255,.4); }
.site-footer .btn-print:hover { background: rgba(255,255,255,.1); }
.muted { color: rgba(31, 41, 55, .4); }

/* ------------------------- 18. Animations ------------------------- */
/* Animations activées seulement si le JS tourne (html sans .no-js). */
html:not(.no-js) [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
html:not(.no-js) [data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .07s; } [data-delay="2"] { transition-delay: .14s; } [data-delay="3"] { transition-delay: .21s; } [data-delay="4"] { transition-delay: .28s; }
.iban { animation: iban-glow 4s ease-in-out infinite; }
@keyframes iban-glow { 0%,100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 20px rgba(47,128,217,.35); } 50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 28px rgba(47,128,217,.55); } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__ball { animation: float-y 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .iban, .hero__ball { animation: none !important; }
}

/* ------------------------- 19. Print A4 (secondaire) ------------------------- */
@media print {
  @page { size: A4 portrait; margin: 10mm; }
  html, body { background: #fff; }
  .site-header, .toolbar, .hero__cta, .site-footer, .table-hint { display: none !important; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .section { padding: 12px 0; page-break-inside: avoid; break-inside: avoid; }
  .hero { padding: 20px 0; }
  .contact, .info-item, .fees, .payment, .jersey, .strip, .values, .schedule { page-break-inside: avoid; break-inside: avoid; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  body { font-size: 11px; }
}
