/*
Theme Name: FCCC Clean Theme (V2)
Theme URI: https://www.fc-courrendlin-courroux.ch
Description: Thème sur-mesure ultra-léger et 100% responsive pour le FC Courrendlin-Courroux. Zéro dépendance Elementor.
Version: 120.0.0
Author: DeepMind Antigravity Team
Text Domain: fccc-clean
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* --- FORCAGE TYPOGRAPHIQUE GLOBAL (OSWALD POUR TITRES, INTER POUR TEXTES) --- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.fccc-title, .fccc-hero-title, .fccc-section-title, .fccc-card-title,
.elementor-heading-title,
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4 {
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body, p, span, li, a, td, th, input, select, textarea, button {
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif !important;
}

/* =========================================================
   COMMUTATEUR VISUEL & PANNEAUX FACEBOOK / INSTAGRAM
   ========================================================= */
.fccc-social-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fccc-white);
  padding: 8px 18px;
  border-radius: var(--fccc-radius-pill);
  border: 1px solid var(--fccc-border-soft);
  box-shadow: var(--fccc-shadow-sm);
  margin-bottom: 24px;
}

.fccc-social-toggle .toggle-btn {
  background: none;
  border: none;
  font-family: var(--fccc-font-title);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--fccc-gray-mid);
  cursor: pointer;
  padding: 4px 8px;
  transition: var(--fccc-transition-fast);
}

/* Facebook Active State */
#fccc-social-switch-box:not(.is-ig-active) #fccc-btn-fb {
  color: var(--fccc-blue);
  font-weight: 700;
}

/* Instagram Active State */
#fccc-social-switch-box.is-ig-active #fccc-btn-ig {
  color: #e1306c;
  font-weight: 700;
}

.fccc-social-toggle .switch-core {
  padding: 0;
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
}

.fccc-social-toggle .switch-track {
  display: block;
  width: 46px;
  height: 24px;
  background: var(--fccc-blue);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s ease;
}

#fccc-social-switch-box.is-ig-active .switch-track {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.fccc-social-toggle .switch-thumb {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--fccc-white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

#fccc-social-switch-box.is-ig-active .switch-thumb {
  transform: translateX(22px);
}

/* Panel Visibility */
.fccc-embed-wrap .fccc-embed {
  display: none;
}

#fccc-social-switch-box:not(.is-ig-active) .panel-facebook {
  display: block;
}

#fccc-social-switch-box.is-ig-active .panel-instagram {
  display: block;
}

:root {
  /* --- COULEURS INSTITUTIONNELLES --- */
  --fccc-red: #e30613;
  --fccc-red-hover: #b8040f;
  --fccc-blue: #006fb5;
  --fccc-blue-hover: #00568c;

  /* --- COULEURS NEUTRES HAUT CONTRASTE (LISIBILITE PARFAITE) --- */
  --fccc-dark: #0f172a;
  --fccc-dark-soft: #1e293b;
  --fccc-text-main: #1a202c;
  --fccc-text-heading: #0d1527;
  --fccc-gray-mid: #334155;
  --fccc-gray-light: #e2e8f0;
  --fccc-bg-light: #f8fafc;
  --fccc-bg-soft: #f0f7fc;
  --fccc-border-soft: #cbd5e1;
  --fccc-white: #ffffff;

  /* --- ALIAS DE COMPATIBILITÉ UI --- */
  --brand-2: var(--fccc-blue);
  --soft-2: var(--fccc-bg-soft);


  /* --- TYPOGRAPHIE --- */
  --fccc-font-title: 'Oswald', sans-serif;
  --fccc-font-body: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;

  /* --- OMBRES & ELEVATIONS --- */
  --fccc-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --fccc-shadow-md: 0 4px 14px rgba(0, 0, 0, 0.10);
  --fccc-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --fccc-shadow-card: 0 6px 20px rgba(0, 0, 0, 0.05);

  /* --- RAYONS DE BORDURES --- */
  --fccc-radius-sm: 4px;
  --fccc-radius-md: 8px;
  --fccc-radius-lg: 16px;
  --fccc-radius-pill: 50px;

  /* --- TRANSITIONS --- */
  --fccc-transition-fast: all 0.2s ease-in-out;
  --fccc-transition-normal: all 0.3s ease-in-out;
}

/* =========================================================
   STYLE GLOBAL & CONTAINER LAYOUT (GARANTIE DE MARGE EN CADRE)
   ========================================================= */
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: clip;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--fccc-font-body);
  color: var(--fccc-text-main) !important;
  background-color: var(--fccc-bg-light);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   EN-TÊTE & MENU DE NAVIGATION PRINCIPAL (DESKTOP & MOBILE)
   ========================================================= */
.fccc-site-header {
  background-color: var(--fccc-dark);
  border-bottom: 2px solid var(--fccc-blue) !important;
  box-shadow: 0 2px 0 var(--fccc-red), var(--fccc-shadow-md) !important;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Masquage du bouton hamburger sur ordinateur */
.fccc-menu-toggle {
  display: none !important;
}

.fccc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.fccc-main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fccc-main-nav a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
  font-family: var(--fccc-font-title) !important;
  font-size: 1.05rem !important; /* ~16.8px (Taille idéale lisibilité desktop) */
  font-weight: 600 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 8px 14px;
  text-decoration: none !important;
  transition: var(--fccc-transition-fast);
  border-radius: 6px;
}

.fccc-main-nav a:hover,
.fccc-main-nav .current-menu-item > a,
.fccc-main-nav .current_page_item > a {
  color: #ffffff !important;
  background-color: var(--fccc-red) !important;
}

/* Éléments principaux */
.fccc-main-nav > ul > li {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fccc-main-nav > ul > li > a {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.05rem !important; /* ~16.8px */
  font-weight: 600 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 8px 14px;
  text-decoration: none !important;
  transition: var(--fccc-transition-fast);
  border-radius: 6px;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.fccc-main-nav > ul > li > a:hover,
.fccc-main-nav > ul > li.current-menu-item > a,
.fccc-main-nav > ul > li.current_page_item > a {
  color: #ffffff !important;
  background-color: var(--fccc-red) !important;
}

/* Indicateur flèche 1er niveau (Menu principal) */
.fccc-main-nav > ul > li.menu-item-has-children > a::after {
  content: ' ▾' !important;
  display: inline-block !important;
  font-size: 0.8em !important;
  margin-left: 4px !important;
  color: var(--fccc-red);
  transition: transform 0.2s ease;
}

.fccc-main-nav > ul > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  color: #ffffff;
}

/* =========================================================
   SOUS-MENUS & DÉROULANTS (LEVEL 1 & LEVEL 2 FLYOUTS)
   ========================================================= */
.fccc-main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--fccc-dark-soft);
  border-top: 3px solid var(--fccc-blue);
  box-shadow: var(--fccc-shadow-lg);
  border-radius: 0 0 8px 8px;
  min-width: 250px;
  flex-direction: column;
  gap: 0;
  padding: 6px 0;
  z-index: 10000;
}

.fccc-main-nav li:hover > .sub-menu {
  display: flex;
}

/* 2ème niveau de sous-menu (Flyout latéral à droite sur ordinateur) */
.fccc-main-nav .sub-menu .sub-menu {
  top: 0 !important;
  left: 100% !important;
  margin-left: 0 !important;
  border-top: 3px solid var(--fccc-red) !important;
  border-radius: 0 8px 8px 8px !important;
  box-shadow: var(--fccc-shadow-lg) !important;
}

/* Liens des sous-menus */
.fccc-main-nav .sub-menu li {
  position: relative;
  width: 100%;
  display: block;
}

.fccc-main-nav .sub-menu a {
  font-size: 0.98rem !important; /* ~15.5px */
  padding: 10px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #e2e8f0 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fccc-main-nav .sub-menu a:hover,
.fccc-main-nav .sub-menu li:hover > a {
  background-color: var(--fccc-blue) !important;
  color: #ffffff !important;
}

/* Indicateur flèche 2ème niveau (Dans la liste déroulante : ORGANISATION ▸, UN PEU D'HISTOIRE ▸) */
.fccc-main-nav .sub-menu li.menu-item-has-children > a::after {
  content: '▸' !important;
  display: inline-block !important;
  font-size: 0.85em !important;
  margin-left: 12px !important;
  color: var(--fccc-red);
  transition: transform 0.2s ease;
}

.fccc-main-nav .sub-menu li.menu-item-has-children:hover > a::after {
  color: #ffffff !important;
  transform: translateX(3px);
}

/* Masquage des boutons JavaScript parasites sur desktop */
@media (min-width: 900px) {
  .fccc-main-nav .fccc-sub-toggle,
  .fccc-main-nav .sub-menu-toggle,
  .fccc-main-nav .dropdown-toggle {
    display: none !important;
  }
}

.fccc-container {
  width: 100% !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 25px !important;
  padding-right: 25px !important;
  box-sizing: border-box !important;
}

@media (max-width: 640px) {
  .fccc-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .fccc-page-main .fccc-container > div {
    padding: 16px 12px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
}

/* RESPONSIVE PARFAIT POUR TOUTES LES IMAGES ET DEBORDEMENTS (ORGANIGRAMME ETC.) */
img,
.fccc-entry-content img,
.entry-content img,
.fccc-org-content-wrap img,
a img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* NE PAS METTRE OVERFLOW HIDDEN SUR LES PARENTS GLOBAUX POUR NE PAS CASSER POSITION STICKY */
.fccc-entry-content,
.entry-content {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.fccc-org-content-wrap {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

.fccc-entry-content a,
.entry-content a,
.fccc-org-content-wrap a {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fccc-font-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--fccc-text-heading) !important;
  margin-top: 0;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

/* Accent sous les titres */
.fccc-title-accent {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--fccc-text-heading) !important;
}
.fccc-title-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--fccc-red);
  border-radius: var(--fccc-radius-sm);
}

/* =========================================================
   STYLE UNIFIE HAUT CONTRASTE POUR LE CONTENU (THE_CONTENT)
   ========================================================= */
.fccc-entry-content,
.entry-content {
  font-family: var(--fccc-font-body);
  font-size: 1.08rem !important;
  color: var(--fccc-text-main) !important;
  line-height: 1.75 !important;
  box-sizing: border-box !important;
}

.fccc-entry-content h1:not(.fccc-member-name), .entry-content h1:not(.fccc-member-name),
.fccc-entry-content h2:not(.fccc-member-name), .entry-content h2:not(.fccc-member-name),
.fccc-entry-content h3:not(.fccc-member-name), .entry-content h3:not(.fccc-member-name),
.fccc-entry-content h4:not(.fccc-member-name), .entry-content h4:not(.fccc-member-name) {
  font-family: var(--fccc-font-title) !important;
  color: var(--fccc-text-heading) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-top: 2.2rem !important;
  margin-bottom: 1.2rem !important;
}

.fccc-entry-content h2, .entry-content h2 {
  font-size: 1.65rem !important;
  border-bottom: 3px solid var(--fccc-red);
  padding-bottom: 6px;
  display: inline-block;
}

.fccc-entry-content h3:not(.fccc-member-name), .entry-content h3:not(.fccc-member-name) {
  font-size: 1.35rem !important;
  color: var(--fccc-blue) !important;
}

.fccc-entry-content p, .entry-content p {
  color: var(--fccc-text-main) !important;
  margin-bottom: 1.2rem;
}

.fccc-entry-content a:not(.fccc-btn):not(.fccc-org-nav a):not(.fccc-back-to-history-menu), 
.entry-content a:not(.fccc-btn):not(.fccc-org-nav a):not(.fccc-back-to-history-menu) {
  color: var(--fccc-blue);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--fccc-transition-fast);
}

.fccc-entry-content a:not(.fccc-btn):not(.fccc-org-nav a):not(.fccc-back-to-history-menu):hover, 
.entry-content a:not(.fccc-btn):not(.fccc-org-nav a):not(.fccc-back-to-history-menu):hover {
  color: var(--fccc-red);
}

/* PAS DE TEXTE SOULIGNÉ SUR TOUS LES BOUTONS DU SITE (PAGES GENÈSE, HISTORIQUE COURROUX, HISTORIQUE COURRENDLIN) */
.fccc-btn,
a.fccc-btn,
.fccc-btn-primary,
a.fccc-btn-primary,
.fccc-btn-secondary,
a.fccc-btn-secondary,
.fccc-org-nav a,
.fccc-back-to-history-menu {
  text-decoration: none !important;
}

.fccc-btn:hover,
a.fccc-btn:hover,
.fccc-btn-primary:hover,
a.fccc-btn-primary:hover,
.fccc-btn-secondary:hover,
a.fccc-btn-secondary:hover,
.fccc-org-nav a:hover,
.fccc-back-to-history-menu:hover {
  text-decoration: none !important;
}

/* TABLEAU DES COTISATIONS ET BOUTONS ADHÉSION - WRAPPER RESPONSIVE SANS DÉBORDEMENT MOBILE */
.fccc-table-responsive {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin-top: 15px !important;
  margin-bottom: 25px !important;
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.entry-content table,
.fccc-fee-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: none !important;
  table-layout: auto !important;
  box-sizing: border-box !important;
}

.entry-content th,
.fccc-fee-table th {
  background: var(--fccc-dark) !important;
  color: #ffffff !important;
  font-family: var(--fccc-font-title) !important;
  text-transform: uppercase !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  text-align: left !important;
  border-bottom: 3px solid var(--fccc-red) !important;
  white-space: nowrap !important;
}

.entry-content td,
.fccc-fee-table td {
  padding: 12px 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  font-size: 0.94rem !important;
  color: var(--fccc-text-main) !important;
}

.entry-content tr:nth-child(even) td,
.fccc-fee-table tr:nth-child(even) td {
  background-color: #f8fafc !important;
}

.entry-content tr:last-child td,
.fccc-fee-table tr:last-child td {
  border-bottom: none !important;
}

.fccc-fee-price {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--fccc-red) !important;
  white-space: nowrap !important;
}

@media (max-width: 640px) {
  .fccc-entry-content h2, .entry-content h2 {
    font-size: 1.35rem !important;
  }

  .entry-content th,
  .fccc-fee-table th {
    padding: 8px 8px !important;
    font-size: 0.82rem !important;
  }

  .entry-content td,
  .fccc-fee-table td {
    padding: 8px 8px !important;
    font-size: 0.84rem !important;
  }

  .fccc-fee-price {
    font-size: 0.98rem !important;
  }
}

/* =========================================================
   PAGE ADHÉSION - PILIERS COMPACTS AVEC ALIGNEMENT 100% CENTRÉ SYMBOLE + TITRE
   ========================================================= */
.fccc-adhesion-pillars-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-top: 20px !important;
  margin-bottom: 25px !important;
}

@media (max-width: 768px) {
  .fccc-adhesion-pillars-grid {
    grid-template-columns: 1fr !important;
  }
}

.fccc-pillar-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-top: 4px solid var(--fccc-blue) !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease-in-out !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}

.fccc-pillar-card:hover {
  border-top-color: var(--fccc-red) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
}

/* EN-TÊTE DU PILIER : FLEX ROW PARFAITEMENT CENTRÉ */
.fccc-pillar-header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
  width: 100% !important;
  padding: 0 !important;
}

.fccc-pillar-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: #f0f7fc !important;
  border: 1px solid rgba(0, 111, 181, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.fccc-pillar-card:hover .fccc-pillar-icon {
  background: #fff5f5 !important;
  border-color: rgba(227, 6, 19, 0.25) !important;
}

.fccc-pillar-title {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.25rem !important;
  color: var(--fccc-text-heading) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  letter-spacing: 0.5px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.fccc-pillar-desc {
  font-size: 0.92rem !important;
  color: var(--fccc-gray-mid) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.fccc-quote-box {
  background: linear-gradient(135deg, #f0f7fc, #ffffff) !important;
  border: 1px solid rgba(0, 111, 181, 0.2) !important;
  border-left: 5px solid var(--fccc-red) !important;
  border-radius: 10px !important;
  padding: 20px 25px !important;
  margin: 25px 0 !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  color: var(--fccc-dark) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  box-sizing: border-box !important;
}

.fccc-fee-notice-box {
  background: #fffbeb !important;
  border: 1px solid #fef3c7 !important;
  border-left: 4px solid #f59e0b !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  margin-top: 15px !important;
  margin-bottom: 30px !important;
  font-size: 0.92rem !important;
  color: #92400e !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

.fccc-register-cards-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
  margin-top: 20px !important;
  margin-bottom: 35px !important;
}

@media (max-width: 768px) {
  .fccc-register-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

.fccc-register-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.25s ease-in-out !important;
  position: relative !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.fccc-register-card.primary-card {
  border-top: 5px solid var(--fccc-red) !important;
}

.fccc-register-card.secondary-card {
  border-top: 5px solid var(--fccc-blue) !important;
}

.fccc-register-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

.fccc-register-title {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.25rem !important;
  color: var(--fccc-text-heading) !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.fccc-register-subtitle {
  font-size: 0.95rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.fccc-register-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-family: var(--fccc-font-title) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.fccc-register-btn.btn-red {
  background-color: var(--fccc-red) !important;
  color: #ffffff !important;
  border: 2px solid var(--fccc-red) !important;
}

.fccc-register-btn.btn-red:hover {
  background-color: var(--fccc-red-hover) !important;
  border-color: var(--fccc-red-hover) !important;
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.35) !important;
}

.fccc-register-btn.btn-blue {
  background-color: var(--fccc-blue) !important;
  color: #ffffff !important;
  border: 2px solid var(--fccc-blue) !important;
}

.fccc-register-btn.btn-blue:hover {
  background-color: var(--fccc-blue-hover) !important;
  border-color: var(--fccc-blue-hover) !important;
  box-shadow: 0 4px 14px rgba(0, 111, 181, 0.35) !important;
}

.fccc-support-cards-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-top: 18px !important;
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  .fccc-support-cards-grid {
    grid-template-columns: 1fr !important;
  }
}

.fccc-support-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.fccc-support-card:hover {
  background: #ffffff !important;
  border-color: var(--fccc-blue) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.fccc-support-title {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.2rem !important;
  color: var(--fccc-text-heading) !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.fccc-support-desc {
  font-size: 0.9rem !important;
  color: #64748b !important;
  margin-bottom: 14px !important;
}

/* =========================================================
   PAGE ORGANISATION / ARBITRES - GRILLE D'ARTICLES PARFAITEMENT ÉQUILIBRÉE
   ========================================================= */
.fccc-org-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: var(--fccc-radius-md);
  border: 1px solid #e2e8f0;
}

.fccc-org-nav a {
  display: inline-block;
  padding: 6px 14px;
  background: #ffffff;
  color: var(--fccc-text-heading) !important;
  font-family: var(--fccc-font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: var(--fccc-radius-pill);
  border: 1px solid #cbd5e1;
  transition: var(--fccc-transition-fast);
}

.fccc-org-nav a:hover {
  background: var(--fccc-red) !important;
  color: var(--fccc-white) !important;
  border-color: var(--fccc-red) !important;
}

.fccc-org-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  align-items: stretch !important;
  align-content: start !important;
  gap: 14px !important;
  width: 100% !important;
  margin-top: 14px !important;
  margin-bottom: 25px !important;
}

/* CARTE DE MEMBRE : HAUTEUR COMPACTE INDÉPENDANTE & TAILLE UNIFORME 100% EN LARGEUR */
.fccc-member-card,
.entry-content article {
  background: #ffffff !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  padding: 10px 14px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  align-self: stretch !important;
  position: relative !important;
  min-height: 0 !important;
  height: fit-content !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease-in-out !important;
  border-left: 3px solid var(--fccc-blue) !important;
}

/* SUR LES PAGES ADHÉSION ET DEVENIR SPONSOR : CARTE UNIQUE RESSERRÉE (MAX 380PX SUR DESKTOP, MAX 100% SUR MOBILE) */
.page-id-202 .fccc-member-card,
.page-id-1214 .fccc-member-card,
.page-template-page-adhesion .fccc-member-card,
.page-template-page-devenir-sponsor .fccc-member-card {
  max-width: min(380px, 100%) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: 15px !important;
  margin-bottom: 20px !important;
}

.fccc-member-card:hover {
  border-left-color: var(--fccc-red) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.fccc-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin-bottom: 8px !important;
}

.fccc-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--fccc-blue), #00568c) !important;
  color: #ffffff !important;
  font-family: var(--fccc-font-title) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(0, 111, 181, 0.25) !important;
}

.fccc-member-card.fccc-vacant-card .fccc-avatar {
  background: linear-gradient(135deg, var(--fccc-red), #b8040f) !important;
  box-shadow: 0 2px 6px rgba(227, 6, 19, 0.25) !important;
}

.fccc-member-meta {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  flex-grow: 1 !important;
}

.fccc-member-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

/* ZERO ESPACE ABSOLU EN-DESSUS DU NOM */
.fccc-entry-content h3.fccc-member-name,
.entry-content h3.fccc-member-name,
.fccc-member-name,
article h3.fccc-member-name {
  font-family: var(--fccc-font-title) !important;
  font-size: 1.05rem !important;
  color: var(--fccc-text-heading) !important;
  margin: 0 0 1px 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  padding-top: 0 !important;
  text-transform: uppercase !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  white-space: normal !important;
  overflow: visible !important;
}

.fccc-member-role {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
  display: block !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow: visible !important;
}

.entry-content article label,
.entry-content article input[type="checkbox"] {
  display: none !important;
}

/* BOUTON COORDONNÉES EN PILULE AJUSTÉE DIRECTEMENT EN-DESSOUS DU RÔLE */
.fccc-card-toggle {
  background: #f1f5f9 !important;
  color: var(--fccc-blue) !important;
  border: 1px solid #cbd5e1 !important;
  font-family: var(--fccc-font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.fccc-card-toggle:hover,
.fccc-card-toggle.is-open {
  background: var(--fccc-blue) !important;
  color: #ffffff !important;
  border-color: var(--fccc-blue) !important;
}

/* PANNEAU CONTENANT LES COORDONNÉES STRICTEMENT MASQUÉ PAR DÉFAUT */
.fccc-card-panel {
  display: none !important;
  box-sizing: border-box !important;
}

.fccc-card-panel.is-open {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 8px !important;
  padding-top: 8px !important;
  border-top: 1px dashed #e2e8f0 !important;
  width: 100% !important;
  animation: fcccSubmenuFade 0.2s ease-in-out !important;
}

/* OPTION 1 : BOUTONS PILLS INTERACTIFS AVEC ICÔNES SVG VECTORIELLES */
.fccc-contact-pill {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 12px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  color: var(--fccc-text-heading) !important;
  font-family: var(--fccc-font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
  word-break: break-all !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.fccc-contact-pill:hover {
  background: #f0f7fc !important;
  border-color: var(--fccc-blue) !important;
  color: var(--fccc-blue) !important;
  transform: translateY(-1px) !important;
}

.fccc-contact-icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  stroke: var(--fccc-blue) !important;
}

/* MISE EN FORME PARTICULIÈRE DE LA CARTE POSTE VACANT */
.fccc-member-card.fccc-vacant-card {
  border-left: 4px dashed var(--fccc-red) !important;
  background-color: #fffbfb !important;
}

.fccc-card-info-box {
  background: #ffffff !important;
  border: 1px dashed #fca5a5 !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
  margin-bottom: 8px !important;
}

.fccc-card-info-text {
  font-size: 0.85rem !important;
  color: var(--fccc-text-main) !important;
  line-height: 1.4 !important;
  margin: 0 0 6px 0 !important;
}

.fccc-card-info-text:last-child {
  margin-bottom: 0 !important;
}

.fccc-card-panel a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 10px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 1.3 !important;
  box-sizing: border-box !important;
}

.fccc-card-panel a.fccc-protected-phone,
.fccc-card-panel a[href^="tel:"] {
  background: #f8fafc !important;
  color: var(--fccc-text-main) !important;
  border: 1px solid #e2e8f0 !important;
}

.fccc-card-panel a.fccc-protected-phone:hover,
.fccc-card-panel a[href^="tel:"]:hover {
  background: var(--fccc-blue) !important;
  color: #ffffff !important;
  border-color: var(--fccc-blue) !important;
}

.fccc-card-panel a.fccc-protected-email,
.fccc-card-panel a[href^="mailto:"] {
  background: #f0f7fc !important;
  color: var(--fccc-blue) !important;
  border: 1px solid rgba(0, 111, 181, 0.25) !important;
}

.fccc-card-panel a.fccc-protected-email:hover,
.fccc-card-panel a[href^="mailto:"]:hover {
  background: var(--fccc-red) !important;
  color: #ffffff !important;
  border-color: var(--fccc-red) !important;
}

/* GRILLE ET CARTES SPONSORS RESTRUCTURÉES */
.fccc-sponsors-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 20px !important;
  align-items: center !important;
}

.fccc-sponsor-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 90px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease-in-out !important;
}

.fccc-sponsor-card:hover {
  border-color: var(--fccc-blue) !important;
  box-shadow: 0 4px 14px rgba(0, 111, 181, 0.12) !important;
  transform: translateY(-2px) !important;
}

.fccc-sponsor-card img {
  max-height: 60px !important;
  max-width: 160px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* EN MODE MOBILE : EMPILEMENT VERTICAL FLUIDE (FLEX) SANS ESPACE GRID ANORMAL */
@media (max-width: 640px) {
  .fccc-org-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* =========================================================
   HEADER PRINCIPAL DU SITE & STYLE ELEGANT DU MENU NAVIGATION
   ========================================================= */
header.fccc-site-header,
.fccc-site-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: var(--fccc-dark) !important;
  border-bottom: 2px solid var(--fccc-blue) !important;
  box-shadow: 0 2px 0 var(--fccc-red), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999999 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.fccc-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 75px !important;
}

.fccc-logo-link img {
  max-height: 50px !important;
  max-width: 210px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* NAVIGATION HEADER PRINCIPALE DESKTOP */
.fccc-main-nav ul,
.fccc-main-nav ol,
.fccc-main-nav li,
.fccc-main-nav .sub-menu,
.fccc-main-nav .sub-menu li {
  list-style: none !important;
  list-style-type: none !important;
}

.fccc-main-nav > ul,
.fccc-main-nav ul.menu {
  display: flex !important;
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 4px !important;
  align-items: center !important;
}

/* =========================================================
   NAVIGATION MOBILE HARMONISÉE (< 900px)
   ========================================================= */
@media (max-width: 899px) {
  .fccc-menu-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--fccc-red) !important;
    color: var(--fccc-white) !important;
    border: none !important;
    border-radius: var(--fccc-radius-sm) !important;
    padding: 8px 16px !important;
    font-family: var(--fccc-font-title) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    height: 44px !important;
    box-sizing: border-box !important;
  }

  .fccc-main-nav {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: var(--fccc-dark) !important;
    border-bottom: 4px solid var(--fccc-red) !important;
    box-shadow: var(--fccc-shadow-lg) !important;
    padding: 8px 0 !important;
    z-index: 999999 !important;
  }

  .fccc-main-nav.is-open {
    display: block !important;
  }

  .fccc-main-nav ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .fccc-main-nav li {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
    min-height: 48px !important;
  }

  .fccc-main-nav a {
    flex: 1 !important;
    font-family: var(--fccc-font-title) !important;
    font-size: 1.05rem !important; /* ~17px */
    font-weight: 600 !important;
    color: var(--fccc-white) !important;
    text-transform: uppercase !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  /* Neutralisation STRICTE ET TOTALE de toutes les flèches pseudo-éléments sur TOUS LES NIVEAUX sur Mobile */
  .fccc-main-nav > ul > li.menu-item-has-children > a::after,
  .fccc-main-nav .sub-menu li.menu-item-has-children > a::after,
  .fccc-main-nav .sub-menu .sub-menu li.menu-item-has-children > a::after,
  .fccc-main-nav li.menu-item-has-children > a::after,
  .fccc-main-nav li a::after,
  .fccc-main-nav li a::before,
  .fccc-main-nav a::after,
  .fccc-main-nav a::before,
  .fccc-main-nav .sub-menu a::after,
  .fccc-main-nav .sub-menu a::before {
    display: none !important;
    content: "" !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .fccc-main-nav li.current-menu-item > a,
  .fccc-main-nav li.current_page_item > a,
  .fccc-main-nav li.current-menu-ancestor > a {
    color: #ffffff !important;
    background-color: var(--fccc-red) !important;
    font-weight: 700 !important;
  }

  /* Bouton accordéon flèche rouge unique sur Mobile */
  .fccc-main-nav .fccc-sub-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: none !important;
    color: var(--fccc-red) !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: transform 0.25s ease !important;
  }

  .fccc-main-nav li.is-open > .fccc-sub-toggle {
    transform: rotate(180deg) !important;
  }

  /* Sous-menus en accordéon sur Mobile */
  .fccc-main-nav .sub-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    background-color: var(--fccc-dark-soft) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .fccc-main-nav li.is-open > .sub-menu {
    display: flex !important;
    flex-direction: column !important;
  }

  .fccc-main-nav .sub-menu a {
    font-size: 0.98rem !important; /* ~15.5px */
    padding-left: 35px !important;
    color: #cbd5e1 !important;
    min-height: 44px !important;
  }

  .fccc-main-nav .sub-menu .sub-menu a {
    padding-left: 50px !important;
  }

  /* Limitation propre de la hauteur du fil Instagram sur Mobile */
  .panel-instagram,
  #fccc-insta-container {
    max-height: 460px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 4px !important;
    border-radius: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* =========================================================
   LIGHTBOX NATIVE FCCC (AGRANDISSEMENT ET FERMETURE PARFAITE DE L'ORGANIGRAMME)
   ========================================================= */
.fccc-lightbox-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(11, 17, 30, 0.92) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.fccc-lightbox-modal.is-open {
  display: flex !important;
  animation: fcccSubmenuFade 0.25s ease-in-out !important;
}

.fccc-lightbox-modal img {
  max-width: 95vw !important;
  max-height: 88vh !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
  object-fit: contain !important;
  background: #ffffff !important;
}

.fccc-lightbox-close {
  position: absolute !important;
  top: 20px !important;
  right: 25px !important;
  background: var(--fccc-red) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.2s ease !important;
  z-index: 1000000 !important;
  line-height: 1 !important;
}

.fccc-lightbox-close:hover {
  background: var(--fccc-red-hover) !important;
  transform: scale(1.1) !important;
}

/* =========================================================
   BOUTONS & CTAS
   ========================================================= */
.fccc-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.fccc-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 10px 20px;
  border-radius: var(--fccc-radius-pill);
  font-family: var(--fccc-font-title);
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: var(--fccc-transition-fast);
  text-align: center;
  box-sizing: border-box;
}

.fccc-btn-primary,
.fccc-btn--primary {
  background-color: #ffffff !important;
  color: var(--fccc-red) !important;
  border: 2px solid var(--fccc-red) !important;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.1);
  text-decoration: none !important;
}

.fccc-btn-primary:hover,
.fccc-btn--primary:hover {
  background-color: #fff1f2 !important;
  color: var(--fccc-red) !important;
  border-color: var(--fccc-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(227, 6, 19, 0.2);
  text-decoration: none !important;
}

.fccc-btn-secondary,
.fccc-btn--ghost {
  background-color: var(--fccc-white) !important;
  color: var(--fccc-blue) !important;
  border: 2px solid var(--fccc-blue) !important;
  text-decoration: none !important;
}

.fccc-btn-secondary:hover,
.fccc-btn--ghost:hover {
  background-color: #f0f7fc !important;
  color: var(--fccc-blue) !important;
  border-color: var(--fccc-blue) !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* =========================================================
   BANDEAU HERO UNIFIÉ ET COMPACT SUR TOUT LE SITE (.fccc-hero)
   Bordure d'accentuation bicolore équilibrée : Bleu Courrendlin & Rouge Courroux (50/50)
   ========================================================= */
.fccc-hero {
  background: var(--fccc-dark) !important;
  color: var(--fccc-white) !important;
  padding: 25px 0 !important;
  min-height: auto !important;
  text-align: center !important;
  border-bottom: 2px solid var(--fccc-blue) !important;
  box-shadow: 0 2px 0 var(--fccc-red), 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}

.fccc-hero-content-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.fccc-hero-emblem {
  flex-shrink: 0 !important;
}

.fccc-hero-emblem img.fccc-emblem-badge {
  height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 18px rgba(227, 6, 19, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) !important;
  transition: transform 0.3s ease-in-out !important;
}

.fccc-hero-emblem img.fccc-emblem-badge:hover {
  transform: scale(1.06) rotate(-2deg) !important;
}

.fccc-hero h1 {
  font-family: var(--fccc-font-title) !important;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

.fccc-hero p {
  font-family: var(--fccc-font-body) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  color: #e2e8f0 !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* OVERRIDE AVEC SPECIFICITE HAUTE POUR LES HEROES AVEC EMBLEME/LOGO */
.fccc-hero .fccc-hero-text {
  flex: 1 !important;
  min-width: 280px !important;
  text-align: left !important;
}

.fccc-hero .fccc-hero-text h1 {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem) !important;
}

.fccc-hero .fccc-hero-text p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  max-width: 100% !important;
  text-align: left !important;
}

@media (max-width: 768px) {
  .fccc-hero-content-wrap {
    flex-direction: column !important;
    text-align: center !important;
    gap: 18px !important;
  }

  .fccc-hero .fccc-hero-text {
    text-align: center !important;
  }

  .fccc-hero .fccc-hero-text h1,
  .fccc-hero .fccc-hero-text p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .fccc-hero-emblem img.fccc-emblem-badge {
    height: 95px !important;
  }
}

@media (max-width: 640px) {
  .fccc-hero {
    padding: 36px 0 !important;
  }

  .fccc-hero h1 {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }

  .fccc-hero p {
    font-size: 0.98rem !important;
  }
}

/* SECTION PROCHAINE MANIFESTATION (COMPACT & SLIM DESIGN) */
.fccc-event-section {
  padding: 20px 0 10px 0;
}

.fccc-event-card {
  position: relative;
  background: var(--fccc-white);
  border-radius: var(--fccc-radius-lg);
  border: 1px solid var(--fccc-gray-light);
  border-left: 5px solid var(--fccc-red);
  box-shadow: var(--fccc-shadow-sm);
  padding: 16px 24px;
  transition: var(--fccc-transition-normal);
}

.fccc-event-card:hover {
  box-shadow: var(--fccc-shadow-md);
  transform: translateY(-2px);
}

.fccc-event-badge-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--fccc-red);
  color: var(--fccc-white);
  font-family: var(--fccc-font-title);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: var(--fccc-radius-pill);
  box-shadow: 0 2px 6px rgba(227, 6, 19, 0.25);
}

.fccc-event-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fccc-event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--fccc-dark-soft), var(--fccc-dark));
  color: var(--fccc-white);
  border-radius: var(--fccc-radius-md);
  border: 2px solid var(--fccc-red);
  flex-shrink: 0;
  box-shadow: var(--fccc-shadow-sm);
}

.fccc-event-day {
  font-family: var(--fccc-font-title);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fccc-white);
}

.fccc-event-month {
  font-family: var(--fccc-font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fccc-red);
  letter-spacing: 0.5px;
}

.fccc-event-content {
  flex: 1;
}

.fccc-event-title {
  font-family: var(--fccc-font-title);
  font-size: 1.25rem !important;
  color: var(--fccc-text-heading) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase;
  line-height: 1.25;
}

.fccc-event-desc {
  font-size: 0.92rem;
  color: var(--fccc-text-main) !important;
  margin-bottom: 8px;
  line-height: 1.45;
}

.fccc-event-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fccc-gray-mid);
}

.fccc-event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--fccc-bg-soft);
  padding: 3px 10px;
  border-radius: var(--fccc-radius-sm);
  border: 1px solid var(--fccc-gray-light);
}

.fccc-event-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.fccc-social-section {
  padding: 40px 0;
}

.fccc-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.fccc-social-switch,
.fccc-panel {
  background: var(--fccc-white);
  border-radius: var(--fccc-radius-lg);
  box-shadow: var(--fccc-shadow-card);
  border: 1px solid var(--fccc-gray-light);
  padding: 24px;
}

/* SYSTEME DE COMMUTATION CSS A ETAT PUR (FACEBOOK / INSTAGRAM) */
.fccc-social-switch:not(.is-ig-active) .panel-facebook {
  display: block !important;
}
.fccc-social-switch:not(.is-ig-active) .panel-instagram {
  display: none !important;
}
.fccc-social-switch:not(.is-ig-active) [data-social="facebook"] {
  color: var(--fccc-blue) !important;
  font-weight: 700 !important;
}
.fccc-social-switch:not(.is-ig-active) [data-social="instagram"] {
  color: #64748b !important;
  font-weight: 600 !important;
}

.fccc-social-switch.is-ig-active .panel-facebook {
  display: none !important;
}
.fccc-social-switch.is-ig-active .panel-instagram {
  display: block !important;
}
.fccc-social-switch.is-ig-active [data-social="instagram"] {
  color: var(--fccc-blue) !important;
  font-weight: 700 !important;
}
.fccc-social-switch.is-ig-active [data-social="facebook"] {
  color: #64748b !important;
  font-weight: 600 !important;
}

.fccc-social-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  padding: 6px 16px !important;
  background: #f1f5f9 !important;
  border-radius: 50px !important;
  border: 1px solid #cbd5e1 !important;
}

.fccc-social-toggle .toggle-btn.switch-label,
.fccc-social-toggle .toggle-btn[data-social="facebook"],
.fccc-social-toggle .toggle-btn[data-social="instagram"] {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--fccc-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  transition: color 0.2s ease !important;
}

.fccc-social-toggle .switch-core {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

.fccc-social-toggle .switch-track {
  display: block !important;
  width: 48px !important;
  height: 26px !important;
  background: #cbd5e1 !important;
  border-radius: 20px !important;
  position: relative !important;
  box-sizing: border-box !important;
  transition: background 0.3s ease !important;
}

.fccc-social-toggle .switch-thumb {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
}

.fccc-social-switch.is-ig-active .switch-track {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888) !important;
}

.fccc-social-switch.is-ig-active .switch-thumb {
  transform: translateX(22px) !important;
}

.fccc-cta-box {
  background: var(--fccc-bg-soft);
  border: 1px solid var(--fccc-border-soft);
  border-radius: var(--fccc-radius-lg);
  padding: 20px;
  margin-top: 20px;
}

/* =========================================================
   CARROUSEL SPONSORS SWIPER ET REPLI CSS MARQUEE CONTINU
   ========================================================= */
.fccc-footer-carousel {
  padding: 2px 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.fccc-sponsors-swiper {
  width: 100% !important;
  overflow: hidden !important;
}

.fccc-sponsors-swiper .swiper-wrapper {
  display: flex !important;
  align-items: center !important;
}

.fccc-sponsors-swiper .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 66px !important;
  width: auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}

.fccc-sponsors-swiper img {
  height: 54px !important;
  max-height: 54px !important;
  width: auto !important;
  max-width: 215px !important;
  object-fit: contain !important;
  filter: grayscale(85%) opacity(75%);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

.fccc-sponsors-swiper img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.1) translateY(-2px) !important;
}

/* Animation de défilement continu secours au cas où JS est en attente */
@keyframes fcccSponsorContinuous {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fccc-sponsors-swiper:not(.swiper-initialized) .swiper-wrapper {
  animation: fcccSponsorContinuous 25s linear infinite !important;
  width: max-content !important;
}

.fccc-sponsors-swiper:not(.swiper-initialized):hover .swiper-wrapper {
  animation-play-state: paused !important;
}

/* =========================================================
   FOOTER STRUCTURE PRO HAUTE-GAMME & PROTECTION ANTI-COLLE DES BORDS
   ========================================================= */
footer,
.fccc-site-footer {
  padding-left: 25px !important;
  padding-right: 25px !important;
  box-sizing: border-box !important;
}

.fccc-site-footer {
  background: var(--fccc-dark) !important;
  color: #e2e8f0 !important;
  padding-top: 10px !important;
  padding-bottom: 8px !important;
  border-top: 2px solid var(--fccc-blue) !important;
  box-shadow: inset 0 2px 0 var(--fccc-red) !important;
}

.fccc-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fccc-footer-brand img {
  max-height: 42px;
  width: auto;
  margin-bottom: 10px;
  display: block;
}

.fccc-footer-desc {
  font-size: 0.9rem;
  color: #cbd5e1 !important;
  line-height: 1.5;
  margin-bottom: 12px;
}

.fccc-footer-socials {
  display: flex;
  gap: 10px;
}

.fccc-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--fccc-transition-fast);
}

.fccc-footer-socials a:hover {
  background: var(--fccc-red) !important;
  border-color: var(--fccc-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.fccc-footer-title {
  font-family: var(--fccc-font-title);
  font-size: 1.1rem !important;
  color: #ffffff !important;
  text-transform: uppercase;
  margin-bottom: 10px !important;
  position: relative;
  display: inline-block;
}

.fccc-footer-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--fccc-red);
  border-radius: 2px;
}

.fccc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}

.fccc-footer-links a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-family: var(--fccc-font-body);
  transition: var(--fccc-transition-fast);
}

.fccc-footer-links a:hover {
  color: var(--fccc-white) !important;
  padding-left: 3px;
}

.fccc-footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fccc-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #cbd5e1 !important;
}

.fccc-info-item .icon {
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
}

.fccc-info-item strong {
  color: #ffffff !important;
}

a.fccc-info-link {
  text-decoration: none !important;
  transition: var(--fccc-transition-fast) !important;
  border-radius: var(--fccc-radius-md);
  padding: 4px 6px;
  margin: -4px -6px;
  border: 1px solid transparent;
}

a.fccc-info-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

a.fccc-info-link:hover strong {
  color: var(--fccc-red) !important;
}

a.fccc-info-link:hover .fccc-address-txt {
  color: #ffffff !important;
}

.fccc-info-item a {
  color: #93c5fd !important;
  text-decoration: underline !important;
}

.fccc-info-item a:hover {
  color: var(--fccc-red) !important;
}

.fccc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #94a3b8 !important;
  padding-top: 8px;
}

.fccc-footer-bottom a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
}

.fccc-footer-bottom a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* =========================================================
   RESPONSIVE DESIGN (MOBILE, TABLETTE, DESKTOP) & ACCORDEON MULTI-NIVEAUX
   ========================================================= */
@media (max-width: 1024px) {
  .fccc-social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .fccc-main-nav {
    display: none !important;
    position: absolute !important;
    top: 75px !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--fccc-dark) !important;
    box-shadow: var(--fccc-shadow-lg) !important;
    border-bottom: 3px solid var(--fccc-red) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
  }

  .fccc-main-nav.is-open {
    display: block !important;
  }

  .fccc-main-nav ul,
  .fccc-main-nav ul.menu {
    flex-direction: column !important;
    padding: 15px !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .fccc-main-nav li {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .fccc-main-nav a {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex: 1 !important;
    box-sizing: border-box !important;
  }

  .fccc-sub-toggle {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 1.2rem !important;
    margin-left: 0 !important;
  }

  /* SOUS-MENUS MULTI-NIVEAUX MASQUES PAR DEFAUT SUR MOBILE (NIVEAUX 1, 2 ET 3) */
  .fccc-main-nav .sub-menu,
  .fccc-main-nav ul ul,
  .fccc-main-nav li ul {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 14px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border-left: 3px solid var(--fccc-red) !important;
    margin: 4px 0 8px 8px !important;
    border-radius: var(--fccc-radius-sm) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* DEPLIEMENT EN ACCORDEON QUAND PARENT EN DIRECT A LA CLASSE .is-open */
  .fccc-main-nav li.is-open > .sub-menu,
  .fccc-main-nav li.is-open > ul {
    display: block !important;
    animation: fcccSubmenuFade 0.2s ease-in-out !important;
  }

  .fccc-menu-toggle {
    display: block !important;
  }
}

@media (max-width: 900px) {
  .fccc-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fccc-event-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .fccc-event-actions {
    flex-direction: row;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fccc-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .fccc-sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

/* ANIMATION LISERÉ BLEU PASSANT AU ROUGE AU SURVOL DES CARTES */
.fccc-event-card {
  border-left: 4px solid var(--fccc-blue) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease !important;
}

.fccc-event-card:hover {
  border-left-color: var(--fccc-red) !important;
}

/* =========================================================
   BLOC 121: ACCESSIBILITÉ & INDICATEUR DE FOCUS CLAVIER (WCAG 2.2 AA)
   ========================================================= */
:focus-visible {
  outline: 3px solid var(--fccc-red) !important;
  outline-offset: 3px !important;
  border-radius: var(--fccc-radius-sm) !important;
}

/* =========================================================
   BLOC 122: CONTRASTE ET LISIBILITÉ DU TEXTE SECONDAIRE (WCAG 2.2 AA / AAA)
   ========================================================= */
/* Cartes et fonds clairs (Ratio 5.8:1) */
.fccc-card-subtitle,
.fccc-meta-text,
span.description {
  color: #475569 !important;
}

/* Bandeau Hero sur fond sombre (Ratio 13.5:1 - WCAG 2.2 AAA) */
.fccc-hero p,
.fccc-hero-text p {
  color: #f1f5f9 !important;
  font-size: 1.02rem !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
}

/* =========================================================
   BLOC 123: ÉQUILIBRE ET HARMONISATION HOMOGÈNE DES BOUTONS (ROUGE ET BLEU)
   ========================================================= */
.fccc-section-title,
h2.fccc-title,
.fccc-page-main h2:not(.fccc-card-title) {
  color: var(--fccc-blue) !important;
}

.fccc-btn-primary,
.fccc-btn--primary {
  background-color: #ffffff !important;
  color: var(--fccc-red) !important;
  border: 2px solid var(--fccc-red) !important;
  transition: var(--fccc-transition-fast) !important;
}

.fccc-btn-primary:hover,
.fccc-btn--primary:hover {
  background-color: #fff1f2 !important;
  color: var(--fccc-red) !important;
  border-color: var(--fccc-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
}

/* =========================================================
   BLOC 124: FINE-TUNING RESPONSIVE SUR PETITS ÉCRANS (<= 360PX)
   ========================================================= */
@media (max-width: 360px) {
  .fccc-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .fccc-hero {
    padding: 30px 12px !important;
  }
}

/* =========================================================
   BLOC 125: SYSTEME D'ANIMATION AU SCROLL SOBRE & PROFESSIONNEL (INTERSECTION OBSERVER)
   ========================================================= */
.fccc-reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.fccc-reveal.fccc-reveal-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Delais en cascade (Stagger effect) */
.fccc-reveal-delay-1 { transition-delay: 0.1s !important; }
.fccc-reveal-delay-2 { transition-delay: 0.2s !important; }
.fccc-reveal-delay-3 { transition-delay: 0.3s !important; }
.fccc-reveal-delay-4 { transition-delay: 0.4s !important; }

/* Micro-interaction d'elevation sobre et elegante au survol */
.fccc-card-interactive {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.fccc-card-interactive:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(11, 17, 30, 0.08) !important;
}

/* Respect des preferences d'accessibilité (prefers-reduced-motion) */
@media (prefers-reduced-motion: reduce) {
  .fccc-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.fccc-hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  transition: opacity 1s ease-in-out, transform 6s ease-out !important;
  transform: scale(1.05) !important;
  pointer-events: none !important;
}

.fccc-hero-slide.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

.fccc-hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Puces de navigation carrousel */
.fccc-hero-slider-dots {
  position: absolute !important;
  bottom: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
  z-index: 10 !important;
  background: rgba(11, 17, 30, 0.6) !important;
  backdrop-filter: blur(6px) !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
}

.fccc-hero-slider-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.fccc-hero-slider-dot.is-active {
  background: var(--fccc-red) !important;
  width: 24px !important;
  border-radius: 10px !important;
}


/* OPTION 2 : HERO LAYOUT ASYMÉTRIQUE ÉPURÉ (2 COLONNES) */
.fccc-hero-opt2 {
  background: var(--fccc-dark) !important;
  padding: 60px 0 70px 0 !important;
}

.fccc-hero-opt2-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 40px !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .fccc-hero-opt2-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

.fccc-hero-opt2 h1 {
  font-family: var(--fccc-font-title) !important;
  font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 1.15 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.fccc-hero-opt2-sub {
  color: #cbd5e1 !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}

/* En-tête Emblème + Titre : Aligné à gauche sur Desktop, centré sur Tablette & Mobile */
.fccc-hero-header-box {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  margin-bottom: 20px !important;
  width: 100% !important;
}

/* Boutons du Hero Option 2 : Alignés à gauche sur Desktop, centrés sur Tablette & Téléphone */
.fccc-hero-opt2-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: flex-start !important;
  margin-top: 22px !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .fccc-hero-opt2-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .fccc-hero-header-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;
  }
  .fccc-hero-opt2-buttons {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.fccc-hero-opt2-media {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: transform 0.3s ease !important;
}

.fccc-hero-opt2-media:hover {
  transform: translateY(-4px) !important;
}

.fccc-hero-opt2-media img {
  width: 100% !important;
  height: auto !important;
  max-height: 380px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Règle stricte pour la taille de l'emblème/logo */
.fccc-hero-logo-box {
  margin-bottom: 20px !important;
}

.fccc-hero-logo-box img {
  width: auto !important;
  max-width: 120px !important;
  max-height: 120px !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
}

/* Solution C : Emblème en filigrane de fond */
.fccc-hero-opt2-left-watermark {
  position: relative !important;
  z-index: 1 !important;
}

.fccc-hero-opt2-left-watermark::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: -20px !important;
  transform: translateY(-50%) !important;
  width: 280px !important;
  height: 280px !important;
  background-image: url('/wp-content/uploads/2026/07/logo-faucon-loup-aigle-blanc.png') !important;
  background-repeat: no-repeat !important;
  background-position: center left !important;
  background-size: contain !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* =====================================================================
   MODULE DE PAGES ÉQUIPES & CARTES STICKERS PANINI
   ===================================================================== */
.fccc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 22px;
}

@media (max-width: 600px) {
  .fccc-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .fccc-panini-card {
    padding: 8px !important;
    border-radius: 12px !important;
  }
  .fccc-panini-card h3 {
    font-size: 0.92rem !important;
  }
  .fccc-panini-card span {
    font-size: 0.7rem !important;
    padding: 3px 8px !important;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .fccc-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)) !important;
    gap: 16px !important;
  }
}

/* 1. CONTENEUR PRINCIPAL DE LA CARTE PANINI */
.fccc-panini-card {
  position: relative !important;
  overflow: visible !important; /* Permet au halo de déborder sans être tronqué par le cadre */
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.35s ease, 
              border-color 0.35s ease, 
              outline-color 0.35s ease !important;
}

/* 2. MASQUE DE SCINTILLEMENT SÉPARÉ POUR CONSERVER OVERFLOW HIDDEN À L'INTÉRIEUR */
.fccc-panini-card-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

/* BASE DU BALAYAGE LUMINEUX BRILLANT (TRANSITION = NONE POUR ÉVITER LE DEUXIÈME SCINTILLEMENT DE RETOUR) */
.fccc-panini-card-shimmer::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    115deg, 
    transparent 35%, 
    rgba(255, 255, 255, 0.75) 48%, 
    rgba(255, 255, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.75) 52%, 
    transparent 65%
  );
  transform: translate(-100%, -100%) rotate(25deg);
  transition: none !important; /* Réinitialisation instantanée (0ms) en quittant la carte */
  pointer-events: none;
}

/* SURVOL : ÉCLAT LUMINEUX ACTIF UNIQUEMENT À L'ENTRÉE SUR LA CARTE */
.fccc-panini-card:hover .fccc-panini-card-shimmer::after {
  transform: translate(100%, 100%) rotate(25deg);
  transition: transform 0.75s ease-in-out !important;
}

/* 3. SURVOL JOUEUR — HALO LUMINEUX BLEU COURRENDLIN (#006fb5) */
.fccc-panini-card.fccc-player-card:hover {
  transform: translateY(-8px) scale(1.025) !important;
  border-color: #006fb5 !important;
  outline-color: #93c5fd !important;
  box-shadow: 0 16px 32px rgba(0, 111, 181, 0.32), 
              0 0 22px rgba(0, 111, 181, 0.22) !important;
}

/* 4. SURVOL STAFF — HALO LUMINEUX ROUGE COURROUX (#e30613) */
.fccc-panini-card:not(.fccc-player-card):hover {
  transform: translateY(-8px) scale(1.025) !important;
  border-color: #e30613 !important;
  outline-color: #fca5a5 !important;
  box-shadow: 0 16px 32px rgba(227, 6, 19, 0.32), 
              0 0 22px rgba(227, 6, 19, 0.22) !important;
}

/* ZOOM LOUPE SVG SUR LES PHOTOS RÉELLES */
.fccc-member-photo-trigger {
  width: 100% !important;
  aspect-ratio: 3/4 !important;
  height: auto !important;
}
.fccc-member-photo-trigger:hover {
  transform: scale(1.03) !important;
  border-color: #006fb5 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14) !important;
}
.fccc-member-photo-trigger:hover .fccc-zoom-badge {
  background: #006fb5 !important;
  transform: scale(1.15);
}







