/* ===================================================
   Y CROIRE ET AGIR – Campagne Politique
   Saint-Laurent-du-Maroni
   Design System & Styles
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #293170;
  --navy-dark: #1a2050;
  --navy-light: #3a44a0;
  --gold: #e3de0f;
  --gold-dark: #c0bb00;
  --gold-light: #f0eb3a;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --gray-100: #f1f3f5;
  --gray-200: #e0e4ed;
  --gray-500: #6b7a9a;
  --gray-700: #3d4a6b;
  --text-dark: #1a1f3c;
  --shadow-sm: 0 2px 8px rgba(41, 49, 112, 0.12);
  --shadow-md: 0 8px 32px rgba(41, 49, 112, 0.18);
  --shadow-lg: 0 24px 64px rgba(41, 49, 112, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 222, 15, 0.15);
  color: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

.gold-accent {
  color: var(--gold-dark);
}

/* ===================================================
   NAVIGATION
=================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

nav.scrolled {
  background: rgba(41, 49, 112, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-text .brand-primary {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-brand-text .brand-secondary {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 16px rgba(227, 222, 15, 0.35);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 222, 15, 0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================================
   HERO SECTION
=================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(41, 49, 112, 0.95) 0%,
      rgba(41, 49, 112, 0.7) 50%,
      rgba(41, 49, 112, 0.4) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--duration, 6s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-content {
  animation: fadeInLeft 0.9s ease-out both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 222, 15, 0.18);
  border: 1.5px solid rgba(227, 222, 15, 0.5);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero-devize {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(227, 222, 15, 0.4);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(227, 222, 15, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInRight 0.9s ease-out 0.2s both;
}

.candidate-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.candidate-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.candidate-photo-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
}

.photo-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.hero-decor-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(227, 222, 15, 0.4);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite;
}

.hero-decor-ring::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed rgba(227, 222, 15, 0.25);
  border-radius: 50%;
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================================================
   SECTION SHARED STYLES
=================================================== */
.section {
  padding: 100px 40px;
}

.section-light {
  background: var(--white);
}

.section-tinted {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
}

.section-navy-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 16px;
}

/* ===================================================
   SECTION EQUIPE - GROUPE
=================================================== */
.equipe-groupe {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--gray-200);
}

.equipe-groupe-title {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 700;
}

.equipe-groupe-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(0);
  transition: transform var(--transition), box-shadow var(--transition);
}

.equipe-groupe-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(6, 40, 99, 0.25);
}

.equipe-groupe-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===================================================
   SECTION 2: CANDIDAT
=================================================== */
#candidat {
  background: var(--white);
}

.candidat-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.candidat-photo-column {
  position: sticky;
  top: 100px;
}

.photo-community {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.photo-community img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(41, 49, 112, 0.9));
  padding: 32px 20px 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}

.chip:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.chip.gold {
  background: rgba(227, 222, 15, 0.15);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.bio-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateX(6px);
  background: rgba(41, 49, 112, 0.04);
}

.value-card h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.message-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.message-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: rgba(227, 222, 15, 0.15);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.message-box p {
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.message-box .signature {
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ===================================================
   SECTION 3: PROGRAMME
=================================================== */
#programme {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.programme-vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  margin-bottom: 64px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.programme-vision::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(227, 222, 15, 0.12), transparent 70%);
  border-radius: 50%;
}

.vision-text h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.vision-text p {
  line-height: 1.8;
  opacity: 0.9;
  font-size: 1rem;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  transition: background var(--transition);
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.pillar-icon {
  font-size: 1.6rem;
}

.pillar-text h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.pillar-text p {
  font-size: 0.78rem;
  opacity: 0.7;
}

.axes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.axe-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.axe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.axe-icon {
  width: 56px;
  height: 56px;
  background: rgba(41, 49, 112, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.axe-card:hover .axe-icon {
  background: var(--navy);
}

.axe-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.axe-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.7;
}

.axe-card ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.axe-card ul li {
  font-size: 0.82rem;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}

.axe-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.programme-download {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 2px dashed var(--gray-200);
  transition: border-color var(--transition);
}

.programme-download:hover {
  border-color: var(--gold);
}

.download-info h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.download-info p {
  color: var(--gray-500);
  font-size: 0.88rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================================
   SECTION 4: AGENDA & ACTUALITÉS
=================================================== */
#agenda {
  background: var(--white);
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.agenda-events h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-events h3::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-200);
}

.event-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.event-item:hover {
  transform: translateX(6px);
}

.event-date {
  flex-shrink: 0;
  width: 56px;
  height: 64px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.event-date .day {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.event-date .month {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.event-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.event-info .event-location {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.event-info .event-type {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(41, 49, 112, 0.08);
  color: var(--navy);
}

.event-type.type-meeting {
  background: rgba(227, 222, 15, 0.25);
  color: #7a6e00;
}

.event-type.type-terrain {
  background: rgba(50, 180, 100, 0.15);
  color: #1a7a45;
}

.event-type.type-debate {
  background: rgba(200, 60, 60, 0.12);
  color: #8a2020;
}

.news-column h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-column h3::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-200);
}

.news-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  transition: all var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.news-card:hover {
  border-left-color: var(--gold);
  background: rgba(227, 222, 15, 0.06);
  transform: translateX(6px);
}

.news-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.news-card h4 {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
}

.news-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.gallery-strip {
  margin-top: 60px;
}

.gallery-strip h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ===================================================
   SECTION 5: SOUTIEN & PARTICIPATION
=================================================== */
#soutien {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

#soutien .section-tag {
  background: rgba(227, 222, 15, 0.15);
  border-color: rgba(227, 222, 15, 0.4);
  color: var(--gold);
}

#soutien .section-title {
  color: var(--white);
}

#soutien .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.soutien-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.form-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-panel h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.tab-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(227, 222, 15, 0.15);
}

.form-group select option {
  background: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227, 222, 15, 0.4);
}

.engage-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.engage-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.engage-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(227, 222, 15, 0.3);
  transform: translateY(-4px);
}

.engage-icon {
  width: 48px;
  height: 48px;
  background: rgba(227, 222, 15, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.engage-card h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.engage-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.6;
}

.newsletter-bar {
  background: rgba(227, 222, 15, 0.1);
  border: 1px solid rgba(227, 222, 15, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 8px;
}

.newsletter-bar h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.newsletter-input {
  display: flex;
  gap: 8px;
}

.newsletter-input input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input input:focus {
  border-color: var(--gold);
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-input button:hover {
  background: var(--gold-light);
}

/* ===================================================
   SECTION 6: RÉSEAUX SOCIAUX
=================================================== */
#reseaux {
  background: var(--off-white);
}

.social-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  min-width: 160px;
  text-align: center;
  border: 2px solid transparent;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.social-card.facebook:hover {
  border-color: #1877f2;
}

.social-card.instagram:hover {
  border-color: #e4405f;
}

.social-card.twitter:hover {
  border-color: #1da1f2;
}

.social-card.youtube:hover {
  border-color: #ff0000;
}

.social-card.tiktok:hover {
  border-color: #010101;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.facebook .social-icon {
  background: rgba(24, 119, 242, 0.12);
}

.instagram .social-icon {
  background: rgba(228, 64, 95, 0.12);
}

.twitter .social-icon {
  background: rgba(29, 161, 242, 0.12);
}

.youtube .social-icon {
  background: rgba(255, 0, 0, 0.12);
}

.tiktok .social-icon {
  background: rgba(1, 1, 1, 0.08);
}

.social-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.social-handle {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.share-bar {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid var(--gray-200);
}

.share-bar p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Outfit', sans-serif;
}

.share-btn.fb {
  background: #1877f2;
  color: white;
}

.share-btn.tw {
  background: #1da1f2;
  color: white;
}

.share-btn.wa {
  background: #25d366;
  color: white;
}

.share-btn.copy {
  background: var(--navy);
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===================================================
   FOOTER
=================================================== */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 40px 32px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand .brand-devize {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-row .icon {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===================================================
   SCROLL TO TOP
=================================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ===================================================
   ANIMATIONS ON SCROLL
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-slogan {
    margin: 0 auto 40px;
  }

  .candidate-photo-frame img {
    height: 400px;
  }

  .candidat-grid {
    grid-template-columns: 1fr;
  }

  .candidat-photo-column {
    position: static;
  }

  .programme-vision {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .axes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .soutien-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.4rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 64px 20px;
  }

  .hero-container {
    padding: 120px 20px 64px;
  }

  .axes-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .programme-vision {
    padding: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-cards {
    gap: 12px;
  }

  .social-card {
    min-width: 120px;
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .programme-download {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================================
   NOTIFICATION TOAST
=================================================== */
.toast {
  position: fixed;
  bottom: 90px;
  right: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  border-left: 4px solid var(--gold);
  max-width: 320px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   SECTION 3B: L'ÉQUIPE
=================================================== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.equipe-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.equipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.equipe-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--off-white);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.equipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--gray-200);
}

.equipe-info .equipe-name {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.equipe-info .equipe-role {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}