/*
Theme Name: Bad Corc's
Description: Thème WordPress personnalisé pour le club de badminton Bad Corc's (ABCL 44).
Author: Bad Corc's
Version: 17.1
*/

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0b1f3a;
  --navy-dark: #071428;
  --blue: #1a56a0;
  --blue-mid: #1e6bbf;
  --yellow: #f5c518;
  --yellow-dark: #d4a80e;
  --white: #ffffff;
  --gray-light: #f4f5f7;
  --gray: #686b74;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}
body { font-family: var(--font-body); background: var(--gray-light); color: var(--navy); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-badge {
  width: 48px; height: 48px; background: var(--yellow);
  border-radius: 50%; border: 3px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--navy); letter-spacing: 0.5px; overflow: hidden;
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.logo:hover .logo-badge { transform: scale(1.05); }
.logo-name {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: var(--white); text-transform: uppercase; letter-spacing: 1px; line-height: 1.15;
}
.logo-name span { display: block; font-weight: 400; font-size: 12px; color: var(--yellow); letter-spacing: 3px; }
nav > ul { display: flex; gap: 28px; list-style: none; }
nav > ul li a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav > ul li a:hover, nav > ul li a.active { color: var(--yellow); border-bottom-color: var(--yellow); }
nav > ul li a.nav-new { color: var(--yellow); }
nav > ul li.nav-boutique { margin-left: 16px; }
nav > ul li.nav-boutique a { background: var(--yellow); color: var(--navy) !important; padding: 6px 14px; border-bottom: none !important; font-weight: 700; }
nav > ul li.nav-boutique a:hover { background: white; color: var(--navy) !important; border-bottom: none !important; }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--yellow); overflow: hidden; padding: 10px 0;
  display: flex; align-items: center;
}
.ticker-label {
  background: var(--navy); color: var(--yellow);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 0 20px; white-space: nowrap; height: 32px;
  display: flex; align-items: center; flex-shrink: 0; margin-right: 24px;
}
.ticker-track {
  display: flex; gap: 48px; animation: ticker 35s linear infinite; white-space: nowrap;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px;
}
.ticker-track a {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none;
}
.ticker-track a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  text-transform: uppercase; color: var(--navy);
  text-align: center; margin-bottom: 40px; letter-spacing: 1px;
}
.section-title span { color: var(--blue); }
.accent-line { width: 48px; height: 4px; background: var(--yellow); margin: 8px auto 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 14px 32px; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(245,197,24,0.35); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 12px 28px; text-decoration: none; border: 2px solid var(--yellow);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--yellow); color: var(--navy); }

/* ── STATS BAR ── */
.stats-section { background: var(--yellow); padding: 40px 48px; }
.stats-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 52px; color: var(--navy); line-height: 1; }
.stat-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--navy-dark); margin-top: 6px; opacity: 0.75; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy-dark); padding: 72px 48px 56px; position: relative; overflow: hidden; min-height: 280px;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://badminton-abcl44.fr/wp-content/uploads/2026/07/background_removalTUFIT1FnaHdDY0UjMSM2Y2FmMjhhNTNhMzRiYzBiNTFlMTQ3ZGQxNmEyZTRmMCMyMjk2IyNUUkFOU0ZPUk1BVElPTl9SRVFVRVNU.png");
  background-size: auto 100%; background-position: calc(100% - 32px) bottom; background-repeat: no-repeat;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-dark) 32%, rgba(7,20,40,0.7) 52%, rgba(7,20,40,0.25) 70%, transparent 88%),
    radial-gradient(ellipse at 70% 50%, rgba(26,86,160,0.25) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.page-hero-tag {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 2px; padding: 4px 12px; margin-bottom: 16px;
}
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: 52px; color: var(--white); text-transform: uppercase; line-height: 1.0; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; margin-top: 12px; max-width: 520px; line-height: 1.7; }

/* ── SHARED BADGE IMAGES ── */
.logo-badge img, .team-badge img, .match-badge img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

/* ── PHOTO BG CLASSES ── */
.pb-1 { background: linear-gradient(140deg, #071428 0%, #1a56a0 100%); }
.pb-2 { background: linear-gradient(140deg, #0b1a30 0%, #1e6bbf 100%); }
.pb-3 { background: linear-gradient(140deg, #0a2010 0%, #1d8a3d 100%); }
.pb-4 { background: linear-gradient(140deg, #261508 0%, #b86018 100%); }
.pb-5 { background: linear-gradient(140deg, #180a26 0%, #6a3a9a 100%); }
.pb-6 { background: linear-gradient(140deg, #082020 0%, #1a7a7a 100%); }
.pb-7 { background: linear-gradient(140deg, #220808 0%, #9a2020 100%); }
.pb-8 { background: linear-gradient(140deg, #0a1c10 0%, #3a7a1a 100%); }

/* ── GALLERY STRIP (home) ── */
.gallery-strip-section { background: var(--white); padding: 72px 48px; }
.gallery-strip-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1100px; margin: 0 auto 28px;
}
.gallery-strip-header .section-title { margin-bottom: 0; text-align: left; }
.gallery-strip-link {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue);
  text-decoration: none; border-bottom: 2px solid var(--blue); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap; margin-bottom: 4px;
}
.gallery-strip-link:hover { color: var(--navy); border-color: var(--navy); }
.gallery-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 155px 155px;
  gap: 8px; max-width: 1100px; margin: 0 auto;
}
.gallery-strip-thumb { position: relative; overflow: hidden; cursor: pointer; }
.gallery-strip-thumb:first-child { grid-row: span 2; }
.gallery-strip-thumb .photo-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.gallery-strip-thumb:hover .photo-inner { transform: scale(1.08); }
.photo-icon { font-size: 60px; opacity: 0.08; user-select: none; pointer-events: none; }
.photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7,20,40,0.88));
  padding: 28px 14px 12px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-strip-thumb:hover .photo-overlay { transform: translateY(0); }
.photo-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow); margin-bottom: 3px;
}
.photo-caption {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.5px; line-height: 1.2;
}

/* ── JOIN BAND (home) ── */
.join-band { background: var(--navy); padding: 56px 48px; border-top: 4px solid var(--yellow); }
.join-band-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.join-band-text { flex: 1; }
.join-band-text h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  text-transform: uppercase; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; line-height: 1.1;
}
.join-band-text h2 span { color: var(--yellow); }
.join-band-text p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.join-band-form { display: flex; flex-shrink: 0; }
.join-band-input {
  width: 240px; padding: 14px 16px;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.2); border-right: none;
  font-family: var(--font-body); font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s;
}
.join-band-input::placeholder { color: rgba(255,255,255,0.3); }
.join-band-input:focus { border-color: var(--yellow); }

/* ── GALLERY PAGE ── */
.gallery-filter-bar {
  background: var(--white); padding: 16px 48px; border-bottom: 2px solid #e6e9ee;
  position: sticky; top: 68px; z-index: 50;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.filter-tab {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; padding: 8px 20px;
  background: var(--gray-light); color: var(--navy); border: 2px solid transparent;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.filter-tab:hover { border-color: var(--navy); }
.filter-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-section { background: var(--gray-light); padding: 56px 48px 80px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; max-width: 1100px; margin: 0 auto 40px;
}
.gallery-photo { position: relative; overflow: hidden; cursor: pointer; height: 220px; }
.gallery-photo:nth-child(5n+1) { height: 280px; }
.gallery-photo .photo-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.35s ease; }
.gallery-photo:hover .photo-inner { transform: scale(1.06); }
.gallery-photo:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.25); }
.gallery-photo .photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 20%, rgba(7,20,40,0.9));
  padding: 40px 14px 14px; transform: none; opacity: 0.8; transition: opacity 0.2s;
}
.gallery-photo:hover .photo-overlay { opacity: 1; }
.gallery-load-more { text-align: center; max-width: 1100px; margin: 0 auto; }

/* ── INSCRIPTION SECTION ── */
.inscription-section { background: var(--navy-dark); padding: 80px 48px; }
.inscription-section .section-title { color: var(--white); }
.inscription-section .section-title span { color: var(--yellow); }
.inscription-layout {
  display: grid; grid-template-columns: 1fr 460px;
  gap: 48px; max-width: 1100px; margin: 0 auto;
}
.inscription-info p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 32px; }
.tarif-list { border-top: 1px solid rgba(255,255,255,0.1); }
.tarif-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tarif-label {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.85);
}
.tarif-label small {
  display: block; font-size: 12px; color: rgba(255,255,255,0.4);
  font-weight: 400; text-transform: none; letter-spacing: 0; margin-top: 3px;
}
.tarif-price { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--yellow); white-space: nowrap; }
.preinsc-link-box {
  display: flex; align-items: flex-start; gap: 14px; background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.3); padding: 18px 20px; margin-top: 24px;
}
.preinsc-link-icon { font-size: 22px; flex-shrink: 0; }
.preinsc-link-title { font-family: var(--font-display); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 4px; }
.preinsc-link-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 8px; }
.preinsc-link-box a { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); text-decoration: none; }
.preinsc-link-box a:hover { text-decoration: underline; }
.inscription-form-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 36px 32px;
}
.inscription-form-box .form-title { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 6px; }
.inscription-form-box .form-subtitle { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.5; }
.inscription-form-box .form-group { margin-bottom: 18px; }
.inscription-form-box .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inscription-form-box label {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45) !important; margin-bottom: 7px;
}
.inscription-form-box input,
.inscription-form-box select {
  width: 100%; padding: 12px 14px; border: 2px solid rgba(255,255,255,0.12) !important;
  font-family: var(--font-body); font-size: 14px; color: var(--white) !important;
  background: rgba(255,255,255,0.07) !important; outline: none; border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.inscription-form-box input:focus,
.inscription-form-box select:focus { border-color: var(--yellow) !important; box-shadow: 0 0 0 3px rgba(245,197,24,0.12); }
.inscription-form-box input::placeholder { color: rgba(255,255,255,0.35) !important; }
.inscription-form-box select option { background: var(--navy-dark); color: var(--white); }
.inscription-form-box select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}

/* ── FORM SUCCESS ── */
.form-success {
  display: none; background: #e8f4e8; border: 2px solid #2ecc71; border-radius: 2px;
  padding: 16px 20px; margin-top: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-transform: uppercase; color: #1d7a1d; letter-spacing: 0.5px; text-align: center;
}
.form-success.visible { display: block; }
.form-error {
  display: none; background: #fbeaea; border: 2px solid #e74c3c; border-radius: 2px;
  padding: 16px 20px; margin-top: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; color: #a02020; letter-spacing: 0.3px; text-align: center;
}
.form-error.visible { display: block; }

/* ── GALERIE GÉRÉE PAR BLOCS WORDPRESS ── */
.gallery-blocks-section { background: var(--gray-light); padding: 56px 48px 80px; }
.gallery-blocks-inner { max-width: 1100px; margin: 0 auto; }
.gallery-blocks-inner h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 26px; text-transform: uppercase;
  color: var(--navy); letter-spacing: 0.5px; margin: 48px 0 20px;
}
.gallery-blocks-inner h2:first-child { margin-top: 0; }
.gallery-blocks-inner p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.gallery-blocks-inner .wp-block-gallery { gap: 10px !important; }
.gallery-blocks-inner .wp-block-image img,
.gallery-blocks-inner figure.wp-block-gallery img { transition: transform 0.3s ease; display: block; }
.gallery-blocks-inner .wp-block-image, .gallery-blocks-inner .blocks-gallery-item { overflow: hidden; }
.gallery-blocks-inner .wp-block-image:hover img,
.gallery-blocks-inner .blocks-gallery-item:hover img { transform: scale(1.05); }
.gallery-blocks-inner figcaption {
  font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; text-align: center;
}

/* ── SINGLE ACTUALITÉ ── */
.single-actu-section { background: var(--gray-light); padding: 56px 48px 88px; }
.single-actu-content { max-width: 760px; margin: 0 auto; background: var(--white); padding: 0 0 48px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.single-actu-image { width: 100%; height: 340px; overflow: hidden; }
.single-actu-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-actu-body { padding: 40px 48px 0; font-size: 16px; line-height: 1.85; color: #333; }
.single-actu-body p { margin-bottom: 18px; }
.single-actu-back {
  display: inline-block; margin: 32px 48px 0; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue); text-decoration: none;
}
.single-actu-back:hover { text-decoration: underline; }

/* ── ARTICLE RICH CONTENT (blocs réutilisables pour toute actu) ── */
.single-actu-body h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase;
  color: var(--navy); letter-spacing: 0.5px; margin: 32px 0 14px;
}
.single-actu-body h2:first-child { margin-top: 0; }
.actu-callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--gray-light); border-left: 4px solid var(--blue);
  padding: 18px 20px; margin: 22px 0; border-radius: 0 3px 3px 0;
}
.actu-callout-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.actu-callout p { margin: 0 !important; font-size: 15px; }
.actu-warning {
  background: #fff9e8; border: 2px solid var(--yellow);
  padding: 20px 22px; margin: 26px 0; border-radius: 3px;
}
.actu-warning-title {
  font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase;
  letter-spacing: 0.5px; color: #7a5500; margin-bottom: 8px;
}
.actu-warning p { margin: 0 !important; font-size: 15px; }
.actu-list { list-style: none; margin: 0 0 24px; padding: 0; }
.actu-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid #eee; font-size: 15px;
}
.actu-list li:last-child { border-bottom: none; }
.actu-list-icon { font-size: 18px; flex-shrink: 0; line-height: 1.5; }
.actu-closing {
  background: var(--navy); color: var(--white); text-align: center;
  padding: 26px 24px; margin-top: 32px; border-radius: 3px; border-top: 4px solid var(--yellow);
}
.actu-closing p { margin: 0 !important; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white) !important; }
.actu-closing span { display: block; margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-display); }
.actu-date-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--navy-dark); color: var(--white);
  padding: 22px 26px; margin: 22px 0; border-radius: 3px; border-left: 4px solid var(--yellow);
}
.actu-date-badge {
  font-family: var(--font-display); font-weight: 800; text-align: center; flex-shrink: 0;
  background: var(--yellow); color: var(--navy); padding: 10px 16px; border-radius: 2px; line-height: 1.1;
}
.actu-date-badge .day { display: block; font-size: 28px; }
.actu-date-badge .month { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.actu-date-card-text { font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.5px; }
.actu-date-card-text span { display: block; font-size: 13px; color: var(--yellow); font-weight: 600; letter-spacing: 1px; margin-top: 4px; }
.actu-callout .btn-primary { display: inline-block; margin-top: 12px; padding: 10px 22px; font-size: 13px; }

/* ── SOCIAL BAND (home) ── */
.social-band { background: var(--white); padding: 56px 48px; border-top: 1px solid #e6e9ee; }
.social-band-inner { max-width: 1040px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.social-band-divider { width: 1px; align-self: stretch; background: #e6e9ee; flex-shrink: 0; }
.social-band-item { flex: 1; display: flex; align-items: center; gap: 20px; }
.social-band-icon { flex-shrink: 0; display: flex; align-items: center; }
.social-band-text { flex: 1; }
.social-band-text h2 { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 6px; line-height: 1.1; }
.social-band-text h2 span.is-facebook { color: var(--blue); }
.social-band-text h2 span.is-instagram { color: #E4405F; }
.social-band-text p { font-size: 13.5px; color: var(--gray); line-height: 1.55; }
.social-band-item .btn-primary { padding: 10px 20px; font-size: 13px; flex-shrink: 0; }
@media (max-width: 900px) {
  .social-band { padding: 36px 20px; }
  .social-band-inner { flex-direction: column; gap: 32px; }
  .social-band-divider { display: none; }
  .social-band-item { flex-direction: column; text-align: center; gap: 14px; }
}

/* ── SPONSORS BAND ── */.sponsors-band { background: var(--white); padding: 44px 48px; border-top: 1px solid #e6e9ee; text-align: center; }
.sponsors-label { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 24px; }
.sponsors-more { display:inline-block; margin-top:24px; font-family:var(--font-display); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--navy); text-decoration:none; border-bottom:2px solid var(--yellow); padding-bottom:2px; transition:color 0.15s; }
.sponsors-more:hover { color:var(--yellow); }
.sponsors-row { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.sponsor-logo {
  width: 130px; height: 64px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gray);
  filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s;
  text-decoration: none; cursor: pointer;
}
.sponsor-logo-empty { border: 2px dashed #d5d9e0; background: transparent; }
.sponsor-logo:hover { filter: grayscale(0); opacity: 1; }
.sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border-top: 3px solid rgba(245,197,24,0.2);
}
footer .logo-name { font-size: 16px; }
footer p { font-size: 13px; color: rgba(255,255,255,0.55); font-family: var(--font-display); letter-spacing: 1px; text-transform: uppercase; }
footer nav { position: static; background: transparent; box-shadow: none; padding: 0; height: auto; }
footer nav ul { gap: 24px; }
footer nav ul li a { font-size: 14px; border-bottom: none; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; }
footer nav ul li a:hover { color: var(--yellow); border-bottom: none; }
.footer-social { display: flex; gap: 20px; align-items: center; }
.footer-social-link { display: flex; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-social-link:hover { color: var(--yellow); }
.footer-social-link svg { width: 26px; height: 26px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  nav > ul {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy-dark); padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5); z-index: 99;
  }
  nav > ul.open { display: flex; }
  nav > ul li a { padding: 13px 24px; display: block; border-bottom: none !important; font-size: 16px; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 36px; }
  .stats-section { padding: 32px 20px; }
  .stats-grid { gap: 40px; }
  .gallery-strip-section { padding: 48px 20px; }
  .gallery-strip-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 100px; }
  .gallery-strip-thumb:first-child { grid-column: span 2; grid-row: span 1; height: 180px; }
  .gallery-strip-thumb .photo-inner { height: 100%; }
  .join-band { padding: 36px 20px; }
  .join-band-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .join-band-form { width: 100%; }
  .join-band-input { flex: 1; min-width: 0; width: auto; }
  .gallery-filter-bar { padding: 12px 20px; top: 0; }
  .gallery-section { padding: 36px 20px 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-photo:nth-child(5n+1) { height: 220px; }
  .inscription-section { padding: 48px 20px; }
  .inscription-layout { grid-template-columns: 1fr; }
  .inscription-form-box { padding: 24px 20px; }
  .inscription-form-box .form-row { grid-template-columns: 1fr; gap: 0; }
  .single-actu-section { padding: 36px 20px 60px; }
  .single-actu-body { padding: 28px 20px 0; }
  .single-actu-back { margin: 24px 20px 0; }
  .gallery-blocks-section { padding: 36px 20px 56px; }
  .sponsors-band { padding: 28px 20px; }
  .sponsors-row { gap: 16px; }
  .sponsor-logo { width: 100px; height: 52px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  footer nav { display: none; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
}


/* ===== index.html page CSS ===== */

.hero {
  position: relative; min-height: 520px; overflow: hidden;
  display: flex; align-items: center; background: var(--navy-dark);
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://badminton-abcl44.fr/wp-content/uploads/2026/07/background_removalTUFIT1FnaHdDY0UjMSM2Y2FmMjhhNTNhMzRiYzBiNTFlMTQ3ZGQxNmEyZTRmMCMyMjk2IyNUUkFOU0ZPUk1BVElPTl9SRVFVRVNU.png");
  background-size: auto 100%; background-position: calc(100% - 32px) center; background-repeat: no-repeat;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-dark) 18%, rgba(7,20,40,0.75) 40%, rgba(7,20,40,0.15) 62%, transparent 78%);
}
.hero-content { position: relative; z-index: 3; padding: 60px 48px; max-width: 600px; }
.hero-tag {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px; padding: 5px 14px; margin-bottom: 20px;
}
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: 62px; color: var(--white); text-transform: uppercase; line-height: 1.0; margin-bottom: 6px; }
.hero h1 em { color: var(--yellow); font-style: normal; font-size: 46px; display: block; }
.hero-sub { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: rgba(255,255,255,0.55); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* LAST RESULT */
.last-result-section { background: var(--white); padding: 72px 48px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.results-grid .result-card { max-width: none; margin: 0; }
.results-grid .result-body { padding: 24px 16px; gap: 12px; }
.results-grid .team-badge { width: 56px; height: 56px; font-size: 13px; margin-bottom: 6px; }
.results-grid .team-name { font-size: 13px; }
.results-grid .score-num { width: 42px; height: 42px; font-size: 24px; }
.result-card { max-width: 640px; margin: 0 auto; border: 1px solid #e0e4ec; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.result-header { background: var(--navy); padding: 10px 24px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; text-align: center; }
.result-body { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 32px 24px; }
.team-display { text-align: center; flex: 1; }
.team-badge {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.team-badge.home { background: var(--yellow); color: var(--navy); border: 3px solid var(--navy); }
.team-badge.away { background: #c0392b; border: 3px solid #e74c3c; color: white; font-size: 14px; }
.team-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.team-city { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.score-center { text-align: center; flex-shrink: 0; }
.score-box { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.score-num { width: 52px; height: 52px; font-family: var(--font-display); font-weight: 800; font-size: 32px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.score-num.win { background: var(--blue); }
.score-num.lose { background: #aaa; }
.score-sep { font-family: var(--font-display); font-size: 20px; color: var(--gray); }
.score-status { display: flex; gap: 8px; justify-content: center; }
.score-status span { font-family: var(--font-display); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 10px; }
.badge-win { background: #e8f4e8; color: #1d7a1d; }
.result-footer { background: var(--gray-light); padding: 10px 24px; text-align: center; font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-display); font-weight: 600; }

/* UPCOMING */
.upcoming-section { position: relative; padding: 72px 48px; background: var(--navy-dark); overflow: hidden; }
.upcoming-bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.upcoming-section .section-title { color: var(--white); position: relative; }
.upcoming-section .section-title span { color: var(--yellow); }
.matches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; }
.match-card { background: var(--white); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.match-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.match-card-header { background: var(--navy); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.comp-name { font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow); }
.comp-type { font-family: var(--font-display); font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.match-card-body { padding: 24px 20px 20px; display: flex; flex-direction: column; align-items: center; }
.match-teams { display: flex; align-items: center; justify-content: center; gap: 16px; width: 100%; margin-bottom: 20px; }
.match-team { text-align: center; flex: 1; }
.match-badge { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin: 0 auto 8px; font-family: var(--font-display); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; border: 2px solid; }
.match-badge.home { background: var(--yellow); border-color: var(--navy); color: var(--navy); }
.match-badge.away { background: var(--gray-light); border-color: #ccc; color: var(--navy); }
.match-team-name { font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; }
.match-team-city { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.vs-badge { flex-shrink: 0; width: 32px; height: 32px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 11px; color: var(--navy); }
.match-info { width: 100%; border-top: 1px solid #eee; padding-top: 14px; text-align: center; }
.match-date { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }
.match-location { font-size: 12px; color: var(--gray); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* NEWS */
.news-section { background: var(--gray-light); padding: 72px 48px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.news-card { background: var(--white); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: block; text-decoration: none; color: inherit; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.news-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.news-card-img.type-result { background: linear-gradient(135deg, var(--navy-dark), var(--blue)); }
.news-card-img.type-event { background: linear-gradient(135deg, #1a3a1a, #2d7a2d); }
.news-card-img.type-info { background: linear-gradient(135deg, #3a1a0a, #a05010); }
.news-card-body { padding: 20px 20px 24px; }
.news-tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; margin-bottom: 10px; }
.news-tag.result { background: #e8f4e8; color: #1d7a1d; }
.news-tag.event { background: #fff9e0; color: #8a6000; }
.news-tag.info { background: #e8f0fc; color: #1a56a0; }
.news-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.news-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.news-date { font-size: 11px; color: var(--gray); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }
.news-cta { text-align: center; margin-top: 40px; }

@media (max-width: 900px) {
  .hero-content { padding: 40px 20px; }
  .hero h1 { font-size: 44px; }
  .hero h1 em { font-size: 34px; }
  .hero-bg { background-position: 85% center; }
  .hero-scrim { background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-dark) 38%, rgba(7,20,40,0.55) 60%, rgba(7,20,40,0.15) 80%, transparent 100%); }
  .last-result-section, .upcoming-section, .news-section { padding: 48px 20px; }
  .matches-grid, .news-grid, .results-grid { grid-template-columns: 1fr; }
}


/* ===== club.html page CSS ===== */

  /* STORY SECTIONS */
  .story-section { background: var(--white); padding: 88px 48px; }
  .story-section.alt { background: var(--gray-light); }
  .story-section.dark { background: var(--navy-dark); }
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: 1100px; margin: 0 auto; align-items: center; }
  .story-grid.reverse { direction: rtl; }
  .story-grid.reverse > * { direction: ltr; }
  .story-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); margin-bottom: 14px; }
  .dark .story-eyebrow { color: var(--yellow); }
  .story-text h2 { font-family: var(--font-display); font-weight: 800; font-size: 36px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; line-height: 1.12; }
  .story-text h2 span { color: var(--blue); }
  .dark .story-text h2 { color: var(--white); }
  .dark .story-text h2 span { color: var(--yellow); }
  .story-text p { font-size: 15.5px; line-height: 1.9; color: #444; margin-bottom: 16px; }
  .story-text p:last-child { margin-bottom: 0; }
  .story-text strong { color: var(--navy); }
  .dark .story-text p { color: rgba(255,255,255,0.68); }
  .dark .story-text strong { color: var(--yellow); }
  .story-visual { border-radius: 6px; overflow: hidden; width: 100%; height: 380px; display: flex; align-items: center; justify-content: center; position: relative; }
  .story-visual.blue { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%); }
  .story-visual.green { background: linear-gradient(135deg, #0d2a0d 0%, #1a5a1a 100%); }
  .story-visual.purple { background: linear-gradient(135deg, #180a26 0%, #6a3a9a 100%); }
  .story-visual-emoji { font-size: 100px; opacity: 0.18; user-select: none; }
  .story-visual-label { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); }
  .photo-placeholder {
    border: 3px dashed #c7cdd6; background: var(--gray-light);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  }
  .story-visual-photo { padding: 0; background: none; border: none; }
  .story-visual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .photo-placeholder-icon { font-size: 48px; opacity: 0.5; }
  .photo-placeholder-text {
    font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gray); text-align: center; padding: 0 24px;
  }

  .full-quote-section { background: var(--yellow); padding: 64px 48px; text-align: center; }
  .full-quote { max-width: 780px; margin: 0 auto; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--navy); text-transform: uppercase; line-height: 1.3; letter-spacing: 0.3px; }

  /* RHYTHME (creneaux) */
  .rhythm-section { background: var(--navy-dark); padding: 88px 48px; }
  .rhythm-section .section-title { color: var(--white); }
  .rhythm-section .section-title span { color: var(--yellow); }
  .rhythm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
  .rhythm-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-top: 4px solid var(--yellow); padding: 26px 20px; text-align: center; }
  .rhythm-day { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
  .rhythm-time { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--yellow); margin-bottom: 6px; }
  .rhythm-type { font-size: 12.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

  /* BUREAU */
  .content-section { background: var(--white); padding: 80px 48px; }
  .content-section.alt { background: var(--gray-light); }
  .content-section.dark { background: var(--navy-dark); }
  .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: 1100px; margin: 0 auto; align-items: center; }
  .content-grid.reverse { direction: rtl; }
  .content-grid.reverse > * { direction: ltr; }

  .content-text h2 {
    font-family: var(--font-display); font-weight: 800; font-size: 38px;
    text-transform: uppercase; color: var(--navy); margin-bottom: 20px; line-height: 1.1;
  }
  .content-text h2 span { color: var(--blue); }
  .content-text p { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 16px; }
  .content-text p:last-child { margin-bottom: 0; }
  .content-text strong { color: var(--navy); }

  .dark .content-text h2 { color: var(--white); }
  .dark .content-text h2 span { color: var(--yellow); }
  .dark .content-text p { color: rgba(255,255,255,0.65); }

  .content-visual {
    border-radius: 6px; overflow: hidden;
    min-height: 340px; display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .content-visual.blue { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%); }
  .content-visual.green { background: linear-gradient(135deg, #0d2a0d 0%, #1a5a1a 100%); }
  .content-visual-emoji { font-size: 100px; opacity: 0.18; user-select: none; }
  .content-visual-label {
    position: absolute; bottom: 20px; left: 20px;
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35);
  }
  .content-visual-tag {
    position: absolute; top: 20px; right: 20px;
    background: var(--yellow); color: var(--navy);
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    padding: 8px 16px; letter-spacing: 1px;
  }

  /* VALEURS */
  .values-section { background: var(--yellow); padding: 72px 48px; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
  .value-card {
    text-align: center; background: rgba(11,31,58,0.08); border-radius: 4px;
    padding: 28px 20px; transition: background 0.2s;
  }
  .value-card:hover { background: rgba(11,31,58,0.14); }
  .value-icon { font-size: 40px; margin-bottom: 14px; display: block; }
  .value-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
  .value-desc { font-size: 13px; color: rgba(11,31,58,0.72); line-height: 1.65; }

  /* BUREAU */
  .bureau-section { background: var(--gray-light); padding: 88px 48px; }
  .bureau-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; font-size: 15.5px; color: #555; line-height: 1.85; }
  .bureau-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
  .person-card { text-align: center; }
  .person-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--navy); border: 4px solid var(--yellow);
    margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--white);
    transition: transform 0.2s; overflow: hidden;
  }
  .person-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .person-avatar-initials { display: block; }
  .person-card:hover .person-avatar { transform: scale(1.05); }
  .person-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; }
  .person-role { font-size: 13px; color: var(--blue); font-weight: 600; margin-top: 4px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }

  /* EVENTS */
  .events-section { background: var(--white); padding: 88px 48px; }
  .events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
  .event-card { position: relative; border-radius: 6px; overflow: hidden; height: 300px; }
  .event-card-bg { position: absolute; inset: 0; }
  .event-card-bg.pb-3 { background: linear-gradient(140deg, #0a2010 0%, #1d8a3d 100%); }
  .event-card-bg.pb-6 { background: linear-gradient(140deg, #082020 0%, #1a7a7a 100%); }
  .event-card-emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 90px; opacity: 0.15; }
  .event-card-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(7,20,40,0.92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 24px; pointer-events: none; }
  .event-tag { font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 6px; }
  .event-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; color: var(--white); line-height: 1.15; margin-bottom: 6px; }
  .event-desc { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 340px; }

  /* CLOSING */
  .closing-section { background: var(--navy); padding: 88px 48px; text-align: center; border-top: 4px solid var(--yellow); }
  .closing-section h2 { font-family: var(--font-display); font-weight: 800; font-size: 36px; text-transform: uppercase; color: var(--white); max-width: 720px; margin: 0 auto 18px; line-height: 1.2; }
  .closing-section h2 span { color: var(--yellow); }
  .closing-section p { font-size: 15.5px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; }

  /* GYMNASE */
  .gym-section { background: var(--gray-light); padding: 88px 48px; }
  .gym-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto 40px; }
  .gym-info-card {
    background: var(--white); border-radius: 4px; padding: 28px 24px; text-align: center;
    border-top: 4px solid var(--yellow); transition: transform 0.2s, box-shadow 0.2s;
  }
  .gym-info-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
  .gym-info-icon { font-size: 36px; margin-bottom: 12px; display: block; }
  .gym-info-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.5px; }
  .gym-info-text { font-size: 14px; color: var(--gray); line-height: 1.65; }

  /* CRÉNEAUX INLINE */
  .schedules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; margin: 0 auto 0; }
  .schedule-card {
    background: var(--navy); border-radius: 4px; padding: 20px 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .schedule-day {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0;
    min-width: 80px;
  }
  .schedule-info { flex: 1; }
  .schedule-time { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); }
  .schedule-type { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  /* TIMELINE */
  .timeline-section { background: var(--navy-dark); padding: 80px 48px; }
  .timeline-section .section-title { color: var(--white); }
  .timeline-section .section-title span { color: var(--yellow); }
  .timeline { max-width: 720px; margin: 0 auto; position: relative; }
  .timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
    width: 2px; background: rgba(245,197,24,0.25);
  }
  .timeline-item { display: flex; gap: 32px; margin-bottom: 44px; position: relative; }
  .timeline-item:last-child { margin-bottom: 0; }
  .timeline-dot {
    width: 48px; height: 48px; border-radius: 50%; background: var(--yellow);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: var(--font-display); font-weight: 800; font-size: 10px;
    color: var(--navy); letter-spacing: 0.5px; position: relative; z-index: 1;
    box-shadow: 0 0 0 4px rgba(245,197,24,0.15);
  }
  .timeline-content { padding-top: 6px; }
  .timeline-year { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--yellow); margin-bottom: 6px; }
  .timeline-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

  @media (max-width: 900px) {
    .story-section { padding: 48px 20px; }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .story-grid.reverse { direction: ltr; }
    .story-visual { height: 260px; }
    .full-quote-section { padding: 40px 20px; }
    .full-quote { font-size: 22px; }
    .rhythm-section { padding: 48px 20px; }
    .rhythm-grid { grid-template-columns: repeat(2, 1fr); }
    .bureau-section { padding: 48px 20px; }
    .bureau-grid { grid-template-columns: repeat(2, 1fr); }
    .events-section { padding: 48px 20px; }
    .events-grid { grid-template-columns: 1fr; }
    .closing-section { padding: 56px 20px; }
    .closing-section h2 { font-size: 26px; }
    .gym-section { padding: 48px 20px; }
    .gym-grid { grid-template-columns: 1fr; }
    .schedules-grid { grid-template-columns: 1fr; }
    .timeline-section { padding: 48px 20px; }
  }


/* ===== equipes.html page CSS ===== */

  .teams-section { background: var(--gray-light); padding: 72px 48px 80px; }

  .team-block {
    max-width: 1100px; margin: 0 auto 48px; background: var(--white);
    border-radius: 4px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: box-shadow 0.2s;
  }
  .team-block:hover { box-shadow: 0 4px 28px rgba(0,0,0,0.11); }
  .team-block:last-child { margin-bottom: 0; }

  .team-block-header {
    background: var(--navy); padding: 22px 32px;
    display: flex; align-items: center; gap: 20px;
  }
  .team-logo {
    width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
    border: 3px solid var(--yellow); flex-shrink: 0;
    background: var(--yellow);
  }
  .team-logo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
  .team-header-info { flex: 1; }
  .team-header-name {
    font-family: var(--font-display); font-weight: 800; font-size: 26px;
    text-transform: uppercase; color: var(--white); letter-spacing: 1px;
  }
  .team-header-comp { font-family: var(--font-display); font-size: 13px; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; margin-top: 3px; }
  .team-header-badge {
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 1.5px; padding: 7px 18px;
    background: rgba(245,197,24,0.12); color: var(--yellow); border: 1px solid rgba(245,197,24,0.35);
  }

  .team-block-body { display: grid; grid-template-columns: 1fr 300px; }

  .team-players { padding: 28px 32px; }
  .players-title {
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 16px;
  }
  .players-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .player-row {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 12px; background: var(--gray-light); border-radius: 3px;
    transition: background 0.15s;
  }
  .player-row:hover { background: #eaecf0; }
  .player-avatar {
    width: 34px; height: 34px; border-radius: 50%; background: var(--navy);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--white);
  }
  .player-info { flex: 1; min-width: 0; }
  .player-name {
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    text-transform: uppercase; color: var(--navy); letter-spacing: 0.3px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  a.player-name { display: block; text-decoration: none; }
  a.player-name:hover { text-decoration: underline; }
  .player-level { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
  .player-captain .player-name::after {
    content: 'C'; display: inline-block; background: var(--yellow); color: var(--navy);
    font-size: 9px; font-weight: 800; padding: 1px 5px; margin-left: 6px; border-radius: 2px;
    vertical-align: middle; line-height: 1.5;
  }

  .team-ranking { padding: 28px 24px; border-left: 1px solid #eee; }
  .ranking-title {
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 14px;
  }
  .ranking-table { width: 100%; border-collapse: collapse; }
  .ranking-table th {
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gray);
    padding: 6px 8px; text-align: left; border-bottom: 2px solid #eee;
  }
  .ranking-table td {
    padding: 8px 8px; font-size: 13px; color: var(--navy);
    border-bottom: 1px solid #f0f0f0; font-family: var(--font-display); font-weight: 600;
  }
  .ranking-table tr:last-child td { border-bottom: none; }
  .ranking-table tr.highlight td { background: rgba(245,197,24,0.12); font-weight: 800; }
  .ranking-table .pos { font-weight: 800; color: var(--blue); width: 28px; }
  .ranking-table .pts { font-weight: 800; text-align: right; }

  /* LOISIR */
  .loisir-section { background: var(--navy-dark); padding: 72px 48px; }
  .loisir-section .section-title { color: var(--white); }
  .loisir-section .section-title span { color: var(--yellow); }
  .loisir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
  .loisir-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; padding: 28px 24px; text-align: center;
    transition: background 0.2s, transform 0.2s;
  }
  .loisir-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
  .loisir-icon { font-size: 40px; margin-bottom: 14px; display: block; }
  .loisir-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
  .loisir-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
  .loisir-cta { text-align: center; margin-top: 40px; }

  @media (max-width: 900px) {
    .teams-section { padding: 48px 20px 60px; }
    .team-block-body { grid-template-columns: 1fr; }
    .team-block-header { flex-wrap: wrap; }
    .team-ranking { border-left: none; border-top: 1px solid #eee; }
    .players-list { grid-template-columns: 1fr; }
    .loisir-section { padding: 48px 20px; }
    .loisir-grid { grid-template-columns: 1fr; }
  }


/* ===== calendrier.html page CSS ===== */

  .cal-section { background: var(--gray-light); padding: 56px 48px 80px; }
  .cal-layout { display: grid; grid-template-columns: 210px 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }

  .filter-box { background: var(--white); border-radius: 4px; overflow: hidden; margin-bottom: 16px; box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
  .filter-box-title {
    background: var(--navy); padding: 10px 16px;
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 2px; color: var(--yellow);
  }
  .filter-list { padding: 6px 0; }
  .filter-item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; }
.filter-item-toggle { cursor: pointer; user-select: none; opacity: 0.4; transition: opacity 0.15s, background 0.15s; }
.filter-item-toggle.active { opacity: 1; background: rgba(11,31,58,0.04); }
.filter-item-toggle:hover { opacity: 0.75; }
.filter-item-toggle.active:hover { opacity: 1; }
.filter-reset {
  display: block; width: 100%; margin-top: 2px; padding: 8px; border: none; background: transparent;
  font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--blue); cursor: pointer; border-top: 1px solid #eee;
}
.filter-reset:hover { color: var(--navy); }

/* ── CALENDRIER — toggle À venir / Résultats passés ── */
.cal-view-toggle { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.cal-view-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 12px 22px; border: 2px solid var(--navy); background: var(--white);
  color: var(--navy); cursor: pointer; transition: background 0.15s, color 0.15s;
}
.cal-view-btn.active { background: var(--navy); color: var(--white); }
.cal-view-btn:not(.active):hover { background: var(--gray-light); }
#cal-btn-past { border-color: var(--yellow); }
#cal-btn-past.active { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
  .filter-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .filter-dot.e1 { background: var(--blue); }
  .filter-dot.e2 { background: #2ecc71; }
  .filter-dot.e3 { background: #e67e22; }
  .filter-dot.ej { background: #9b59b6; }
.filter-dot.tournoi { background: var(--yellow); }
.filter-dot.evenement { background: #2ecc71; }
  .filter-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; flex: 1; }
  .filter-count { font-family: var(--font-display); font-weight: 700; font-size: 11px; background: var(--gray-light); color: var(--gray); padding: 1px 7px; border-radius: 10px; }

  .season-box { background: var(--yellow); border-radius: 4px; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .season-stat { text-align: center; }
  .season-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--navy); line-height: 1; }
  .season-stat-label { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(11,31,58,0.65); margin-top: 2px; }

  .month-group { margin-bottom: 36px; }
  .month-title {
    font-family: var(--font-display); font-weight: 800; font-size: 20px;
    text-transform: uppercase; color: var(--navy); letter-spacing: 2px;
    margin-bottom: 12px; display: flex; align-items: center; gap: 14px;
  }
  .month-title::after { content: ''; flex: 1; height: 2px; background: #e0e4ec; }

  .match-row {
    background: var(--white); border-radius: 3px; margin-bottom: 7px;
    display: grid; grid-template-columns: 72px 1fr auto; align-items: stretch;
    overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.05); transition: box-shadow 0.15s;
  }
  .match-row:hover { box-shadow: 0 3px 14px rgba(0,0,0,0.1); }

  .cal-date-box {
    background: var(--navy); padding: 14px 10px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 60px; flex-shrink: 0;
  }
  .cal-date-day { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--white); line-height: 1; }
  .cal-date-month { font-family: var(--font-display); font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
  .cal-date-weekday { font-family: var(--font-display); font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  /* Couleurs par équipe (matchs) et par nature (tournois/événements) */
  .cal-date-box.e1 { background: var(--blue); }
  .cal-date-box.e2 { background: #1f8a4a; }
  .cal-date-box.e3 { background: #b85a0a; }
  .cal-date-box.ej { background: #7d3c98; }
  .cal-date-box.federe { background: var(--navy); }
  .cal-date-box.evenement { background: #1a5a1a; }
  .cal-date-box.loisir { background: var(--yellow); }
  .cal-date-box.loisir .cal-date-day { color: var(--navy); }
  .cal-date-box.loisir .cal-date-month { color: var(--navy); opacity: 0.7; }
  .cal-date-box.loisir .cal-date-weekday { color: var(--navy); opacity: 0.45; }

  .match-middle { padding: 12px 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .match-team-badge-sm {
    width: 34px; height: 34px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 11px;
  }
  .match-team-badge-sm.home { background: var(--yellow); border: 2px solid var(--navy); color: var(--navy); }
  .match-team-badge-sm.away { background: var(--gray-light); border: 2px solid #ccc; color: var(--navy); }
  .match-teams-text { flex: 1; min-width: 0; }
  .match-teams-label {
    font-family: var(--font-display); font-weight: 800; font-size: 15px;
    text-transform: uppercase; color: var(--navy); letter-spacing: 0.3px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .match-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }
  .match-meta strong { color: var(--navy); font-weight: 600; }
  .match-pills { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; }
  .pill {
    font-family: var(--font-display); font-weight: 700; font-size: 10px;
    text-transform: uppercase; letter-spacing: 1px; padding: 2px 8px; border-radius: 2px; white-space: nowrap;
  }
  .pill.e1 { background: rgba(26,86,160,0.1); color: var(--blue); }
  .pill.e2 { background: rgba(46,204,113,0.1); color: #1a8a4a; }
  .pill.e3 { background: rgba(230,126,34,0.1); color: #b85a0a; }
  .pill.ej { background: rgba(155,89,182,0.1); color: #7a3a9a; }
  .pill.domicile { background: rgba(245,197,24,0.2); color: #7a5500; }
  .pill.deplacement { background: rgba(138,143,155,0.12); color: #555; }

  .match-result-col { padding: 12px 18px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; min-width: 90px; }
  .score-display { display: flex; align-items: center; gap: 4px; }
  .score-v {
    font-family: var(--font-display); font-weight: 800; font-size: 20px;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: white; border-radius: 2px;
  }
  .score-v.win { background: var(--blue); }
  .score-v.lose { background: #bbb; }
  .score-v.draw { background: #8a8f9b; }
  .score-sep-sm { font-family: var(--font-display); font-size: 13px; color: var(--gray); }
  .result-badge {
    font-family: var(--font-display); font-weight: 700; font-size: 10px;
    text-transform: uppercase; letter-spacing: 1px; padding: 2px 8px; margin-top: 5px; display: inline-block; border-radius: 2px;
  }
  .result-badge.win { background: #e8f4e8; color: #1d7a1d; }
  .result-badge.lose { background: #fce8e8; color: #a01a1a; }
  .result-badge.draw { background: #fff9e0; color: #8a6000; }
  .upcoming-label {
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 1px; color: var(--gray);
    border: 1px solid #ddd; padding: 4px 10px; border-radius: 2px;
  }

  @media (max-width: 900px) {
    .cal-section { padding: 40px 16px 60px; }
    .cal-layout { grid-template-columns: 1fr; }
    .cal-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .match-row { grid-template-columns: 60px 1fr auto; }
    .match-result-col { display: flex; padding: 8px 12px; min-width: 70px; }
    .match-middle { flex-wrap: nowrap; gap: 8px; padding: 10px 12px; }
    .match-team-badge-sm { width: 28px; height: 28px; font-size: 10px; flex-shrink: 0; }
    .match-pills { display: none; }
    .match-teams-label { font-size: 13px; white-space: normal; }
    .match-meta { font-size: 11px; }
  }
  @media (max-width: 520px) { .cal-sidebar { grid-template-columns: 1fr; } }


/* ===== contact.html page CSS ===== */

  .contact-section { background: var(--gray-light); padding: 72px 48px 80px; }
  .contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; max-width: 1100px; margin: 0 auto; }
  .contact-form-box { background: var(--white); padding: 44px 40px; box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
  .form-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; letter-spacing: 1px; }
  .form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 32px; line-height: 1.5; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 7px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 2px solid #e0e4ec;
    font-family: var(--font-body); font-size: 14px; color: var(--navy);
    background: var(--white); outline: none; border-radius: 0;
    transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,160,0.1); }
  .form-group textarea { height: 130px; resize: vertical; }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8f9b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
  }
  .btn-submit { width: 100%; padding: 16px; font-size: 16px; margin-top: 4px; }
  .contact-info { display: flex; flex-direction: column; gap: 14px; }
  .info-card { background: var(--white); padding: 20px 20px; display: flex; align-items: flex-start; gap: 14px; box-shadow: 0 1px 8px rgba(0,0,0,0.06); transition: transform 0.15s; }
  .info-card:hover { transform: translateX(3px); }
  .info-icon { width: 42px; height: 42px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .info-label { font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 4px; }
  .info-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.55; }
  .info-value a { color: var(--blue); text-decoration: none; }
  .info-value a:hover { text-decoration: underline; }
  .join-box { background: var(--navy); padding: 28px 24px; text-align: center; border-top: 4px solid var(--yellow); }
  .join-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 1px; }
  .join-box p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 20px; }
  .join-box .btn-primary { display: block; text-align: center; }
  .map-section { background: var(--navy-dark); height: 240px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; text-decoration: none; cursor: pointer; }
  .map-section::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 40px);
  }
  .map-pin { position: relative; z-index: 2; text-align: center; }
  .map-pin-icon { font-size: 36px; display: block; margin-bottom: 10px; }
  .map-pin-label { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--white); letter-spacing: 1px; display: block; }
  .map-pin-sub { font-family: var(--font-display); font-size: 13px; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; display: block; transition: opacity 0.2s; }
  .map-section:hover .map-pin-sub { opacity: 0.75; }
  @media (max-width: 900px) {
    .contact-section { padding: 48px 20px 60px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-box { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
  }


/* ===== actualites.html page CSS ===== */

  .actu-section { background: var(--gray-light); padding: 72px 48px 80px; }
  .actu-featured {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1100px; margin: 0 auto 32px;
    background: var(--white); text-decoration: none; color: inherit; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1); border: 2px solid var(--yellow);
  }
  .actu-featured-img { min-height: 260px; display: flex; align-items: center; justify-content: center; font-size: 72px; background: linear-gradient(135deg, var(--navy-dark), var(--blue)); }
  .actu-featured-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
  .actu-featured-pin {
    display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 11px;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); background: var(--yellow);
    padding: 4px 11px; margin-bottom: 12px; align-self: flex-start;
  }
  .actu-featured-body h2 { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
  .actu-featured-body p { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
  .actu-filter-bar { max-width: 1100px; margin: 0 auto 28px; }
  .actu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .actu-card { background: var(--white); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: block; text-decoration: none; color: inherit; }
  .actu-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
  .actu-card-img { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 64px; background: linear-gradient(135deg, var(--navy-dark), var(--blue)); }
  .actu-card-body { padding: 20px 20px 24px; }
  .actu-tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; margin-bottom: 10px; background: #e8f0fc; color: var(--blue); }
  .actu-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
  .actu-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
  .actu-date { font-size: 11px; color: var(--gray); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }
  .actu-empty { max-width: 560px; margin: 0 auto; text-align: center; padding: 48px 24px; background: var(--white); }
  .actu-empty p { color: var(--gray); font-size: 15px; line-height: 1.7; }
  @media (max-width: 900px) {
    .actu-section { padding: 48px 20px 60px; }
    .actu-featured { grid-template-columns: 1fr; }
    .actu-featured-img { min-height: 180px; }
    .actu-featured-body { padding: 24px 20px; }
    .actu-grid { grid-template-columns: 1fr; }
  }


/* ===== liens-utiles.html page CSS ===== */

  .liens-section { background: var(--gray-light); padding: 72px 48px 80px; }
  .liens-group { max-width: 780px; margin: 0 auto 48px; }
  .liens-group:last-child { margin-bottom: 0; }
  .liens-group-title {
    font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--blue); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid #e0e4ec;
  }
  .lien-card {
    display: flex; align-items: center; gap: 18px; background: var(--white);
    padding: 20px 22px; margin-bottom: 10px; text-decoration: none; color: inherit;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05); transition: transform 0.15s, box-shadow 0.15s;
  }
  .lien-card:hover { transform: translateX(4px); box-shadow: 0 4px 18px rgba(0,0,0,0.1); }

.liens-back {
  display: inline-block; max-width: 780px; margin: 0 auto 24px; width: 100%;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue); text-decoration: none;
}
.liens-back:hover { text-decoration: underline; }

/* ── LISTE TOURNOIS (triée par date) ── */
.tournoi-list { max-width: 780px; margin: 0 auto; }
.tournoi-row {
  display: flex; align-items: center; gap: 18px; background: var(--white);
  padding: 16px 20px; margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05); transition: box-shadow 0.15s;
}
.tournoi-row:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.tournoi-date {
  width: 56px; height: 56px; flex-shrink: 0; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.tournoi-day { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); line-height: 1; }
.tournoi-month { font-family: var(--font-display); font-size: 10px; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.tournoi-info { flex: 1; min-width: 0; }
.tournoi-name-row { display: flex; align-items: center; gap: 12px; }
.tournoi-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.3px; }
.tournoi-name-date {
  font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--blue); margin-left: 8px;
}
.tournoi-desc { font-size: 12.5px; color: var(--gray); margin-top: 6px; }
.tournoi-affiche-link {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: var(--blue); text-decoration: none; margin-top: 4px;
}
.tournoi-affiche-link:hover { text-decoration: underline; }
.tournoi-affiche-thumb { display: block; margin-top: 10px; max-width: 220px; }
.tournoi-affiche-thumb img { width: 100%; height: auto; display: block; border: 1px solid #e0e4ec; transition: opacity 0.15s; }
.tournoi-affiche-thumb:hover img { opacity: 0.85; }
.tournoi-row-cal { border-left: 4px solid var(--yellow); margin-bottom: 7px; }
.evenement-row-cal { border-left-color: #2ecc71; }
.tournoi-tag.evenement { background: rgba(46,204,113,0.14); color: #1d7a1d; }
.tournoi-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 10px; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 10px; white-space: nowrap; flex-shrink: 0;
}
.tournoi-tag.federe { background: rgba(26,86,160,0.1); color: var(--blue); }
.tournoi-tag.loisir { background: rgba(245,197,24,0.2); color: #7a5500; }
.tournoi-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--navy); background: var(--yellow); padding: 9px 16px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.15s;
}
.tournoi-btn:hover { background: var(--yellow-dark); }
@media (max-width: 900px) {
  .tournoi-row { flex-wrap: wrap; padding: 14px 16px; gap: 12px; }
}

/* ── CTA TUTORIELS BAND (accueil) ── */
.tuto-cta-band { background: var(--yellow); padding: 0; }
.tuto-cta-link {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; padding: 18px 48px; text-decoration: none; color: var(--navy);
  transition: background 0.15s;
}
.tuto-cta-link:hover { background: rgba(11,31,58,0.06); }
.tuto-cta-icon { font-size: 22px; flex-shrink: 0; }
.tuto-cta-text { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; text-align: center; }
.tuto-cta-arrow {
  font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase;
  letter-spacing: 1px; white-space: nowrap; border-bottom: 2px solid var(--navy); padding-bottom: 1px;
}
@media (max-width: 900px) {
  .tuto-cta-link { padding: 16px 20px; flex-direction: column; gap: 8px; }
}

/* ── COUNTDOWN SAISON ── */
.countdown-section { background: var(--navy-dark); padding: 48px 48px 56px; text-align: center; position: relative; overflow: hidden; }
.countdown-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.countdown-tag {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 2px; padding: 4px 12px; margin-bottom: 16px;
}
.countdown-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: 30px; text-transform: uppercase; color: var(--white); letter-spacing: 0.5px; margin-bottom: 12px; }
.countdown-inner h2 span { color: var(--yellow); }
.countdown-joke { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }
.countdown-boxes { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.countdown-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 18px 24px; min-width: 90px; }
.countdown-num { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--yellow); line-height: 1; }
.countdown-label { font-family: var(--font-display); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-top: 6px; }
@media (max-width: 900px) {
  .countdown-section { padding: 40px 20px; }
  .countdown-inner h2 { font-size: 22px; }
  .countdown-boxes { gap: 10px; }
  .countdown-box { padding: 14px 16px; min-width: 68px; }
  .countdown-num { font-size: 26px; }
}

.raquette-guide { max-width: 900px; margin: 0 auto; }
.raquette-guide-intro {
  background: var(--white); padding: 26px 28px; margin-bottom: 32px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05); border-left: 4px solid var(--blue);
}
.raquette-guide-intro p { font-size: 14.5px; color: #444; line-height: 1.75; }
.raquette-guide-intro p:last-child { margin-top: 10px; font-size: 13px; color: var(--gray); }
.raquette-block { margin-bottom: 40px; }
.raquette-block-title {
  font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase;
  color: var(--navy); letter-spacing: 0.5px; margin-bottom: 6px;
}
.raquette-block-sub { font-size: 13.5px; color: var(--gray); margin-bottom: 18px; line-height: 1.6; }
.raquette-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.raquette-card { background: var(--white); padding: 20px 20px; box-shadow: 0 1px 8px rgba(0,0,0,0.05); border-top: 3px solid var(--yellow); }
.raquette-card-title {
  font-family: var(--font-display); font-weight: 800; font-size: 14px; text-transform: uppercase;
  color: var(--navy); letter-spacing: 0.5px; margin-bottom: 8px;
}
.raquette-card p { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.raquette-card p:last-child { margin-bottom: 0; }
.raquette-card strong { color: var(--navy); }
.raquette-weight-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.raquette-weight-item {
  background: var(--navy); padding: 16px 10px; text-align: center; border-top: 3px solid var(--yellow);
}
.raquette-weight-u { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--yellow); }
.raquette-weight-g { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.raquette-profile-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 1px 8px rgba(0,0,0,0.05); }
.raquette-profile-table th {
  font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white); background: var(--navy); padding: 12px 14px; text-align: left;
}
.raquette-profile-table td { padding: 12px 14px; font-size: 13px; color: #444; border-bottom: 1px solid #eee; vertical-align: top; }
.raquette-profile-table tr:last-child td { border-bottom: none; }
.raquette-profile-table td:first-child { font-family: var(--font-display); font-weight: 700; color: var(--navy); white-space: nowrap; }
.raquette-source { text-align: center; font-size: 13px; color: var(--gray); margin-top: 12px; }
.raquette-source a { color: var(--blue); text-decoration: none; }
.raquette-source a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .raquette-cards { grid-template-columns: 1fr; }
  .raquette-weight-grid { grid-template-columns: repeat(3, 1fr); }
  .raquette-profile-table { display: block; overflow-x: auto; }
}

.tuto-intro {
  max-width: 780px; margin: 0 auto 32px; background: var(--white); padding: 24px 26px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05); border-left: 4px solid var(--blue);
}
.tuto-intro p { font-size: 14.5px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.tuto-intro .btn-primary { padding: 10px 22px; font-size: 13px; }

.liens-reminder {
  max-width: 780px; margin: 28px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.liens-reminder-item {
  background: var(--navy); padding: 20px 22px; display: flex; align-items: center; gap: 14px;
  border-top: 3px solid var(--yellow);
}
.liens-reminder-icon { font-size: 26px; flex-shrink: 0; }
.liens-reminder-label {
  font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--yellow); margin-bottom: 3px;
}
.liens-reminder-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--white); }
@media (max-width: 900px) {
  .liens-reminder { grid-template-columns: 1fr; }
}
.liens-note { max-width: 780px; margin: 20px auto 0; text-align: center; font-size: 13.5px; color: var(--gray); }
.liens-note a { color: var(--blue); text-decoration: none; }
.liens-note a:hover { text-decoration: underline; }

/* ── LIENS UTILES — TUILES DE CATÉGORIES ── */
.liens-categories-section { background: var(--gray-light); padding: 72px 48px 80px; }
.liens-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.liens-categories-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 700px; }

/* ── ESPRIT DU CLUB ── */
.esprit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto 28px; }
.esprit-poster { background: var(--white); padding: 10px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.esprit-poster img { width: 100%; height: auto; display: block; }
.esprit-poster figcaption {
  text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); padding: 12px 8px 6px;
}
@media (max-width: 900px) {
  .esprit-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.esprit-welcome {
  max-width: 720px; margin: 0 auto; background: var(--navy-dark); padding: 40px 40px 36px;
  text-align: center; border-top: 4px solid var(--yellow); position: relative; overflow: hidden;
}
.esprit-welcome-icon { font-size: 40px; margin-bottom: 12px; }
.esprit-welcome h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 26px; text-transform: uppercase;
  color: var(--white); letter-spacing: 0.5px; margin-bottom: 18px;
}
.esprit-welcome p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; text-align: left; }
.esprit-welcome p:last-child { margin-bottom: 0; }
.esprit-welcome strong { color: var(--yellow); }
.esprit-welcome-signoff { font-family: var(--font-display); font-weight: 700; font-size: 17px; text-align: center !important; color: var(--white); margin-top: 24px; letter-spacing: 0.3px; }
.esprit-jeu-cles-teaser {
  max-width: 720px; margin: 32px auto 0; background: var(--white); border: 2px dashed var(--yellow);
  padding: 28px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.esprit-jeu-cles-icon { font-size: 36px; }
.esprit-jeu-cles-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--navy); letter-spacing: 0.3px; }
.esprit-jeu-cles-desc { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 480px; }
.mini-jeu-mascotte-placeholder {
  max-width: 320px; height: 220px; margin: 0 auto 32px; border: 3px dashed #c7cdd6; background: var(--gray-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.minijeu-partie-box { max-width: 480px; margin: 32px auto 0; text-align: center; }
.minijeu-partie-box .btn-primary { width: 100%; padding: 16px; font-size: 15px; }
#partie-form-wrap { background: var(--white); padding: 24px; margin-top: 16px; text-align: left; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.minijeu-partie-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; text-align: center; }
@media (max-width: 900px) {
  .esprit-welcome { padding: 28px 22px; }
}
.liens-category-card {
  display: block; background: var(--white); text-decoration: none; color: inherit;
  padding: 36px 28px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid var(--yellow); transition: transform 0.2s, box-shadow 0.2s;
}
.liens-category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.liens-category-icon { font-size: 42px; margin-bottom: 16px; }
.liens-category-name {
  font-family: var(--font-display); font-weight: 800; font-size: 19px; text-transform: uppercase;
  color: var(--navy); letter-spacing: 0.5px; margin-bottom: 10px;
}
.liens-category-desc { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.liens-category-arrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--blue);
}
@media (max-width: 900px) {
  .liens-categories-section { padding: 48px 20px 56px; }
  .liens-categories-grid { grid-template-columns: 1fr; }
}  .lien-icon {
    width: 46px; height: 46px; background: var(--yellow); border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .lien-text { flex: 1; }
  .lien-name {
    font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--navy); margin-bottom: 2px;
  }
  .lien-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }
  .lien-arrow { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 18px; flex-shrink: 0; }
  @media (max-width: 900px) {
    .liens-section { padding: 48px 20px 56px; }
    .lien-card { padding: 16px 18px; gap: 14px; }
  }

/* ── WIDGET DE CHAT FAQ ── */
.bc-chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 200; font-family: var(--font-body); }
.bc-chat-toggle {
  position: relative; width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--yellow); color: var(--navy); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25); transition: transform 0.15s, box-shadow 0.2s;
}
.bc-chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.3); }
.bc-chat-toggle-pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245,197,24,0.6);
  animation: bc-chat-pulse 1.8s ease-out 3;
}
@keyframes bc-chat-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,197,24,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(245,197,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
}
.bc-chat-callout {
  position: absolute; right: 68px; bottom: 14px; width: max-content; max-width: min(220px, calc(100vw - 110px));
  background: var(--navy); color: var(--white); padding: 10px 32px 10px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 600; line-height: 1.4; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  animation: bc-callout-in 0.3s ease-out;
}
.bc-chat-callout[hidden] { display: none; }
.bc-chat-callout::after {
  content: ''; position: absolute; right: -6px; bottom: 20px;
  width: 12px; height: 12px; background: var(--navy); transform: rotate(45deg);
}
.bc-chat-callout-close {
  position: absolute; top: 4px; right: 6px; background: none; border: none; color: var(--white);
  opacity: 0.7; font-size: 12px; cursor: pointer; padding: 4px; line-height: 1;
}
.bc-chat-callout-close:hover { opacity: 1; }
@keyframes bc-callout-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .bc-chat-toggle-pulse::after { animation: none; }
  .bc-chat-callout { animation: none; }
}
.bc-chat-panel {
  position: absolute; right: 0; bottom: 72px; width: 340px; max-width: calc(100vw - 32px);
  max-height: 70vh; background: var(--white); border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); display: flex; flex-direction: column; overflow: hidden;
}
.bc-chat-panel[hidden] { display: none; }
.bc-chat-header {
  background: var(--navy); color: var(--white); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.bc-chat-close {
  background: none; border: none; color: var(--white); font-size: 16px; cursor: pointer;
  opacity: 0.75; padding: 4px; line-height: 1;
}
.bc-chat-close:hover { opacity: 1; }
.bc-chat-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px;
  min-height: 160px; background: var(--gray-light);
}
.bc-chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 10px; font-size: 14px; line-height: 1.5; white-space: pre-line; }
.bc-chat-msg-bot { align-self: flex-start; background: var(--white); color: var(--navy); box-shadow: 0 1px 6px rgba(0,0,0,0.08); }
.bc-chat-msg-user { align-self: flex-end; background: var(--blue-mid); color: var(--white); }
.bc-chat-msg-link { display: inline-block; margin-top: 6px; color: var(--blue); font-weight: 600; text-decoration: none; }
.bc-chat-msg-link:hover { text-decoration: underline; }
.bc-chat-suggestions {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px; background: var(--white);
  border-top: 1px solid var(--gray-light); max-height: 160px; overflow-y: auto;
}
.bc-chat-chip {
  background: var(--gray-light); border: 1px solid #e0e4ec; color: var(--navy);
  font-size: 12.5px; padding: 6px 12px; border-radius: 999px; cursor: pointer; text-align: left;
  transition: background 0.15s;
}
.bc-chat-chip:hover { background: var(--yellow); border-color: var(--yellow); }
.bc-chat-chip-back { font-weight: 700; background: var(--white); }
.bc-chat-categories { display: flex; flex-wrap: wrap; gap: 6px; width: 100%; margin-top: 2px; }
.bc-chat-category-chip {
  background: var(--navy); color: var(--white); border: none;
  font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; cursor: pointer;
  transition: background 0.15s;
}
.bc-chat-category-chip:hover { background: var(--blue-mid); }
.bc-chat-form { display: flex; align-items: flex-end; gap: 8px; padding: 12px; border-top: 1px solid var(--gray-light); background: var(--white); }
.bc-chat-form-fields { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.bc-chat-form input {
  width: 100%; border: 1px solid #d7dae0; border-radius: 8px; padding: 10px 12px; font-size: 14px; font-family: var(--font-body);
}
.bc-chat-form input:focus { outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(30,107,191,0.15); }
.bc-chat-form input:disabled { background: var(--gray-light); opacity: 0.7; }
.bc-chat-send {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; border: none; cursor: pointer;
  background: var(--yellow); color: var(--navy); font-size: 16px; transition: background 0.15s;
}
.bc-chat-send:hover { background: var(--yellow-dark); }
.bc-chat-send:disabled { opacity: 0.6; cursor: default; }
@media (max-width: 480px) {
  .bc-chat-widget { right: 14px; bottom: 14px; }
  .bc-chat-panel { width: calc(100vw - 28px); bottom: 70px; }
}


