/**
 * PCF 94 – Main CSS
 * Thème FSE Gutenberg – Fédération du Val-de-Marne
 */

/* ────────────────────────────────────────────────
   IMPORTS POLICES
──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@400;700;800&family=Great+Vibes&display=swap');

/* ────────────────────────────────────────────────
   VARIABLES CSS
──────────────────────────────────────────────── */
:root {
  --pcf-red:       #F33000;
  --pcf-yellow:    #FFDE00;
  --pcf-grey:      #3C3C3B;
  --pcf-dark-blue: #2E4768;
  --pcf-blue:      #1D71B8;
  --pcf-green:     #2FAC66;
  --pcf-purple:    #662483;
  --pcf-white:     #FFFFFF;
  --pcf-light:     #F5F5F5;
  --pcf-font:      'Saira Extra Condensed', sans-serif;
  --pcf-font-script: 'Great Vibes', cursive;
  --pcf-radius:    1rem;
  --pcf-radius-lg: 2rem;
  --pcf-shadow:    0 4px 24px rgba(0,0,0,0.1);
  --pcf-shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --pcf-transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}

/* ────────────────────────────────────────────────
   BASE
──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--pcf-font);
  color: var(--pcf-grey);
  scroll-behavior: smooth;
  line-height: 1.4;
}

.baby-soul { font-family: var(--pcf-font-script) !important; }

img { max-width: 100%; height: auto; }

a {
  color: var(--pcf-red);
  text-decoration: none;
  transition: var(--pcf-transition);
}
a:hover { color: var(--pcf-dark-blue); }

/* ────────────────────────────────────────────────
   EN-TÊTE (HEADER)
──────────────────────────────────────────────── */
.pcf94-header {
  background: var(--pcf-red) !important;
  color: var(--pcf-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--pcf-yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.pcf94-header-inner {
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pcf94-logo-group { gap: 1rem; }

.pcf94-site-logo img {
  border-radius: 4px;
  transition: transform 0.3s;
}
.pcf94-site-logo:hover img { transform: scale(1.1); }

.pcf94-site-title {
  color: var(--pcf-white) !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em;
  margin: 0 !important;
}
.pcf94-site-title a { color: inherit !important; text-decoration: none; }

.pcf94-site-tagline {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  margin: 0 !important;
}

/* Navigation principale */
.pcf94-nav .wp-block-navigation__container {
  gap: 1.5rem;
}
.pcf94-nav .wp-block-navigation-item__content {
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--pcf-font) !important;
  font-weight: 700 !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  font-size: 1.15rem !important;
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.pcf94-nav .wp-block-navigation-item__content:hover {
  color: var(--pcf-yellow) !important;
  border-bottom-color: var(--pcf-yellow);
}

.pcf94-nav-adhesion .wp-block-navigation-item__content {
  background: var(--pcf-white);
  color: var(--pcf-red) !important;
  padding: 0.35rem 1.25rem !important;
  border-radius: 6px;
  border-bottom: none !important;
}
.pcf94-nav-adhesion .wp-block-navigation-item__content:hover {
  background: var(--pcf-yellow);
  color: var(--pcf-red) !important;
}

.pcf94-nav-interne .wp-block-navigation-item__content {
  color: var(--pcf-yellow) !important;
}

/* Hamburger mobile */
.wp-block-navigation__responsive-container-open svg { fill: var(--pcf-yellow); }

/* ────────────────────────────────────────────────
   HERO / COVER
──────────────────────────────────────────────── */
.pcf94-hero .wp-block-cover__inner-blocks {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ────────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────────── */
.pcf94-section { width: 100%; }

/* ────────────────────────────────────────────────
   BOUTONS
──────────────────────────────────────────────── */
.pcf94-btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pcf-font) !important;
  font-weight: 800 !important;
  font-style: italic !important;
  text-transform: uppercase !important;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  background: var(--pcf-red);
  color: var(--pcf-white);
  text-decoration: none;
  transition: var(--pcf-transition);
  box-shadow: 0 4px 16px rgba(243,48,0,0.3);
}
.pcf94-btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(243,48,0,0.4);
}

.pcf94-btn-adhesion {
  width: 100%;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  background: var(--pcf-green);
  box-shadow: 0 4px 16px rgba(47,172,102,0.3);
}
.pcf94-btn-adhesion:hover {
  box-shadow: 0 8px 24px rgba(47,172,102,0.4);
}

.pcf94-btn-upload {
  background: var(--pcf-purple);
  box-shadow: 0 4px 16px rgba(102,36,131,0.3);
}

.pcf94-btn-sm { font-size: 1rem !important; padding: 0.5rem 1.25rem; }

/* ────────────────────────────────────────────────
   AGENDA MILITANT
──────────────────────────────────────────────── */
.pcf94-agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pcf94-event-card {
  background: var(--pcf-white);
  border-radius: var(--pcf-radius);
  border-left: 6px solid var(--pcf-red);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--pcf-shadow);
  transition: var(--pcf-transition);
  position: relative;
}
.pcf94-event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pcf-shadow-lg);
}

.pcf94-event-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pcf-red);
  letter-spacing: 0.05em;
}
.pcf94-event-title {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  color: var(--pcf-dark-blue);
  margin: 0.25rem 0;
  line-height: 1.1;
}
.pcf94-event-lieu {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}
.pcf94-event-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--pcf-dark-blue);
  color: var(--pcf-white);
  padding: 0.15rem 0.75rem;
  border-radius: 2rem;
  margin-top: 0.75rem;
}
.pcf94-event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pcf-red);
  text-decoration: none;
  text-transform: uppercase;
}
.pcf94-event-link:hover { color: var(--pcf-dark-blue); }

.pcf94-agenda-loading {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-style: italic;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

.pcf94-empty-agenda {
  grid-column: 1 / -1;
  background: #FFF9E5;
  border: 2px dashed var(--pcf-yellow);
  border-radius: var(--pcf-radius);
  padding: 2rem;
  text-align: center;
}

/* ────────────────────────────────────────────────
   MATÉRIELS MILITANTS
──────────────────────────────────────────────── */
.pcf94-materiels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pcf94-materiel-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--pcf-radius);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 1.25rem;
  text-align: center;
  transition: var(--pcf-transition);
  color: var(--pcf-white);
  text-decoration: none;
}
.pcf94-materiels-grid:not([style*="color:white"]) .pcf94-materiel-card {
  background: var(--pcf-white);
  border-color: rgba(0,0,0,0.08);
  color: var(--pcf-grey);
}

.pcf94-materiel-card:hover {
  transform: translateY(-6px);
  border-color: var(--pcf-yellow);
}

.pcf94-materiel-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.pcf94-materiel-icon {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pcf94-materiel-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.pcf94-materiel-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

.pcf94-materiel-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pcf-yellow);
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────
   ÉLUEES – CARTES
──────────────────────────────────────────────── */
.pcf94-elus-grid { gap: 1.5rem; }

.pcf94-elu-card {
  transition: var(--pcf-transition);
}
.pcf94-elu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pcf-shadow-lg);
}

.pcf94-elu-card .wp-block-post-featured-image img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid var(--pcf-red);
  margin-bottom: 0.75rem;
}

.pcf94-elu-departemental .wp-block-post-featured-image img {
  border-color: var(--pcf-red);
}
.pcf94-elu-municipal .wp-block-post-featured-image img {
  border-color: var(--pcf-blue);
}

/* ────────────────────────────────────────────────
   FÊTE DE L'HUMA – PROGRAMME
──────────────────────────────────────────────── */
.pcf94-huma-grid { gap: 1.5rem; }

.pcf94-huma-card {
  transition: var(--pcf-transition);
}
.pcf94-huma-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pcf-shadow-lg);
}

/* Filtres programme */
.pcf94-filtre-btn {
  font-family: var(--pcf-font);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--pcf-dark-blue);
  border-radius: 2rem;
  background: transparent;
  color: var(--pcf-dark-blue);
  cursor: pointer;
  transition: all 0.25s;
  margin: 0.25rem;
}
.pcf94-filtre-btn:hover,
.pcf94-filtre-btn.active {
  background: var(--pcf-red);
  border-color: var(--pcf-red);
  color: var(--pcf-white);
}

/* ────────────────────────────────────────────────
   CARTE INTERACTIVE
──────────────────────────────────────────────── */
.pcf94-map-wrapper {
  border-radius: var(--pcf-radius);
  overflow: hidden;
  border: 4px solid var(--pcf-dark-blue);
  box-shadow: var(--pcf-shadow-lg);
}
.pcf94-map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ────────────────────────────────────────────────
   FORMULAIRE GÉNÉRAL
──────────────────────────────────────────────── */
.pcf94-form {
  background: var(--pcf-white);
  border-radius: var(--pcf-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--pcf-shadow-lg);
  border: 3px solid rgba(243,48,0,0.08);
}

.pcf94-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) { .pcf94-form-row { grid-template-columns: 1fr; } }

.pcf94-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.pcf94-field label {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--pcf-dark-blue);
}
.pcf94-field input,
.pcf94-field select,
.pcf94-field textarea {
  font-family: var(--pcf-font);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #DDD;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s;
  color: var(--pcf-grey);
  background: var(--pcf-white);
}
.pcf94-field input:focus,
.pcf94-field select:focus,
.pcf94-field textarea:focus {
  border-color: var(--pcf-red);
  box-shadow: 0 0 0 3px rgba(243,48,0,0.15);
}
.pcf94-field textarea { resize: vertical; }

.pcf94-required { color: var(--pcf-red); font-weight: 800; }

.pcf94-field-rgpd {
  background: #F9F9F9;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #EEE;
  font-size: 0.9rem;
  color: #555;
}

/* Messages succès / erreur */
.pcf94-success-msg {
  background: var(--pcf-green);
  color: var(--pcf-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--pcf-radius);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.pcf94-error-msg {
  background: var(--pcf-red);
  color: var(--pcf-white);
  padding: 1rem 1.5rem;
  border-radius: var(--pcf-radius);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ────────────────────────────────────────────────
   MON PCF – LOGIN
──────────────────────────────────────────────── */
.pcf94-login-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem;
  background: var(--pcf-light);
}
.pcf94-login-box {
  background: var(--pcf-white);
  border-radius: var(--pcf-radius-lg);
  padding: 3rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--pcf-shadow-lg);
  text-align: center;
  border-top: 8px solid var(--pcf-purple);
}
.pcf94-login-logo {
  display: inline-block;
  background: var(--pcf-red);
  color: var(--pcf-white);
  font-size: 2.5rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.pcf94-login-box h2 {
  color: var(--pcf-dark-blue);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.pcf94-login-box p {
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.pcf94-error {
  color: var(--pcf-red);
  font-weight: 700;
  background: #FFF0EE;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(243,48,0,0.2);
}

/* ────────────────────────────────────────────────
   MON PCF – ONGLETS
──────────────────────────────────────────────── */
.pcf94-mon-pcf-tabs {
  margin-top: 2rem;
}

.pcf94-tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--pcf-purple);
  padding-bottom: 0;
}

.pcf94-tab-btn {
  font-family: var(--pcf-font);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  cursor: pointer;
  color: #888;
  transition: all 0.25s;
}
.pcf94-tab-btn:hover { color: var(--pcf-purple); }
.pcf94-tab-btn.active {
  color: var(--pcf-purple);
  border-bottom-color: var(--pcf-purple);
  background: rgba(102,36,131,0.05);
  border-radius: 8px 8px 0 0;
}

.pcf94-tab-panel { display: none; }
.pcf94-tab-panel.active { display: block; }

.pcf94-panel-header {
  background: linear-gradient(135deg, #662483 0%, #2E4768 100%);
  color: var(--pcf-white);
  padding: 1.5rem 2rem;
  border-radius: var(--pcf-radius) var(--pcf-radius) 0 0;
  margin-bottom: 0;
}
.pcf94-panel-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  color: var(--pcf-yellow);
  margin: 0 0 0.25rem;
}
.pcf94-panel-header p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
}

/* Recherche docs */
.pcf94-docs-search {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.pcf94-docs-search input,
.pcf94-docs-search select {
  font-family: var(--pcf-font);
  font-size: 1rem;
  padding: 0.65rem 1rem;
  border: 2px solid #DDD;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s;
  flex: 1;
  min-width: 200px;
}
.pcf94-docs-search input:focus,
.pcf94-docs-search select:focus { border-color: var(--pcf-purple); }

.pcf94-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.pcf94-doc-item {
  background: var(--pcf-white);
  border-radius: var(--pcf-radius);
  border-left: 5px solid var(--pcf-purple);
  padding: 1.25rem;
  box-shadow: var(--pcf-shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--pcf-transition);
}
.pcf94-doc-item:hover { transform: translateX(4px); box-shadow: var(--pcf-shadow-lg); }

.pcf94-doc-icon { font-size: 2rem; flex-shrink: 0; }
.pcf94-doc-info { flex: 1; min-width: 0; }
.pcf94-doc-titre {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--pcf-dark-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pcf94-doc-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pcf-purple);
}
.pcf94-doc-dl {
  font-size: 0.85rem;
  color: var(--pcf-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  text-decoration: none;
}

/* Upload dropzone */
.pcf94-upload-form .pcf94-form { border-top: 8px solid var(--pcf-purple); }

.pcf94-dropzone {
  border: 3px dashed var(--pcf-purple);
  border-radius: var(--pcf-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  background: #FAF5FF;
}
.pcf94-dropzone:hover,
.pcf94-dropzone.drag-over {
  border-color: var(--pcf-red);
  background: #FFF5F3;
}
.pcf94-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.pcf94-dropzone-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.pcf94-dropzone p { color: #666; margin: 0; }
.pcf94-dropzone strong { color: var(--pcf-purple); }
.pcf94-file-name {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--pcf-green);
  font-size: 0.95rem;
}

/* Barre de progression */
.pcf94-upload-progress { margin: 1rem 0; }
.pcf94-progress-bar {
  height: 8px;
  background: #EEE;
  border-radius: 4px;
  overflow: hidden;
}
.pcf94-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--pcf-purple), var(--pcf-red));
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s;
}
.pcf94-upload-progress p {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

/* Liens utiles */
.pcf94-liens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.pcf94-lien-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--pcf-white);
  border-radius: var(--pcf-radius);
  padding: 1.25rem;
  box-shadow: var(--pcf-shadow);
  text-decoration: none;
  color: var(--pcf-grey);
  border-left: 5px solid var(--pcf-purple);
  transition: var(--pcf-transition);
}
.pcf94-lien-card:hover { transform: translateY(-4px); box-shadow: var(--pcf-shadow-lg); }
.pcf94-lien-icon { font-size: 2rem; flex-shrink: 0; }
.pcf94-lien-card strong { display: block; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; font-style: italic; color: var(--pcf-dark-blue); }
.pcf94-lien-card p { margin: 0; font-size: 0.9rem; color: #666; }

/* ────────────────────────────────────────────────
   AIDE ÉDITION (visible en admin)
──────────────────────────────────────────────── */
.pcf94-edit-hint {
  background: #FFF9E5;
  border: 2px dashed var(--pcf-yellow);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.pcf94-loading {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-style: italic;
  grid-column: 1 / -1;
}

/* ────────────────────────────────────────────────
   PIED DE PAGE (FOOTER)
──────────────────────────────────────────────── */
.pcf94-footer {
  border-top: 8px solid var(--pcf-yellow) !important;
}

.pcf94-footer-nav .wp-block-navigation__container {
  flex-direction: column;
  gap: 0.5rem;
}
.pcf94-footer-nav .wp-block-navigation-item__content {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem !important;
  font-style: italic !important;
}
.pcf94-footer-nav .wp-block-navigation-item__content:hover {
  color: var(--pcf-yellow) !important;
}

.pcf94-social-links { margin-top: 1rem; }
.pcf94-social-links .wp-social-link {
  background: rgba(255,255,255,0.1) !important;
  transition: all 0.25s;
}
.pcf94-social-links .wp-social-link:hover {
  background: var(--pcf-yellow) !important;
  transform: translateY(-3px);
}
.pcf94-social-links .wp-social-link svg { fill: var(--pcf-white); }
.pcf94-social-links .wp-social-link:hover svg { fill: var(--pcf-red); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pcf94-header-inner { padding: 0.75rem 1.25rem; }
  .pcf94-nav .wp-block-navigation__container { gap: 1rem; }
}

@media (max-width: 768px) {
  .pcf94-agenda-grid,
  .pcf94-materiels-grid,
  .pcf94-liens-grid { grid-template-columns: 1fr; }
  .pcf94-tabs-nav { gap: 0.25rem; }
  .pcf94-tab-btn { font-size: 0.85rem; padding: 0.5rem 0.85rem; }
  .pcf94-form { padding: 1.5rem; }
  .pcf94-mon-pcf-tabs { overflow-x: auto; }
}

@media (max-width: 480px) {
  .pcf94-login-box { padding: 1.5rem; }
  .pcf94-form-row { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────
   UTILITAIRES
──────────────────────────────────────────────── */
.pcf94-admin-only { display: none; }
.logged-in .pcf94-admin-only { display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Animation hover cartes */
.hover-lift { transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275); }
.hover-lift:hover { transform: translateY(-8px); }
