/* =============================================
   TOUNES CLEAN UP — Feuille de styles principale
   Design : Élégant & Premium — Identité verte
   ============================================= */

/* ---------- Variables & Reset ---------- */
:root {
  --teal-dark:   #1a5c5a;
  --teal:        #237068;
  --teal-light:  #2d8a78;
  --green:       #3aac7e;
  --yellow:      #e8c229;
  --yellow-light:#f5d84a;
  --yellow-pale: #fdf7d4;
  --white:       #ffffff;
  --cream:       #f4fbf8;
  --text:        #1e2d2b;
  --text-light:  #5a7a74;
  --border:      #d4ebe4;

  --font-head:   'Roboto Condensed', 'Segoe UI', sans-serif;
  --font-body:   'Roboto Condensed', 'Segoe UI', sans-serif;

  --shadow-sm:   0 2px 8px rgba(26,92,90,.08);
  --shadow-md:   0 8px 32px rgba(26,92,90,.15);
  --shadow-lg:   0 20px 60px rgba(26,92,90,.22);

  --radius:      6px;
  --transition:  0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--teal-dark); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.section-title    { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 560px; }

.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
  margin: 1.25rem 0 2rem;
  border-radius: 2px;
}

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-center .section-divider  { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  font-weight: 600; letter-spacing: .04em;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary { background: var(--yellow); color: var(--teal-dark); }
.btn-primary:hover {
  background: var(--yellow-light);
  box-shadow: 0 4px 20px rgba(232,194,41,.4);
  transform: translateY(-2px);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-teal   { background: var(--teal-dark); color: var(--white); }
.btn-teal:hover { background: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-md); }

section { padding: 5.5rem 0; }

/* ======================================================
   PREHEADER
   ====================================================== */
.preheader {
  background: var(--teal-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .5rem 0;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
}
.preheader .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.preheader-left {
  display: flex; align-items: center; gap: 1.5rem;
}
.preheader-item {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
}
.preheader-item i { color: var(--yellow); font-size: .75rem; }
.preheader-item a {
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.preheader-item a:hover { color: var(--yellow); }
.preheader-right {
  display: flex; align-items: center; gap: .6rem;
}
.preheader-social {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: all var(--transition);
}
.preheader-social:hover {
  background: var(--yellow); color: var(--teal-dark);
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,92,90,.08);
  transition: top var(--transition), box-shadow var(--transition);
}
.navbar.preheader-hidden { top: 0; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem; padding-bottom: 1.2rem;
}

/* Logo partenaire à droite */
.navbar-partner-logo { display: flex; align-items: center; margin-left: 2rem; }
.navbar-partner-img  { height: 48px; width: auto; object-fit: contain; }

/* Logo */
.navbar-brand { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.brand-logo-img { height: 70px; width: auto; }
.brand-tagline {
  display: block; width: 100%; white-space: nowrap;
  font-size: .65rem; font-weight: 600; letter-spacing: .04em;
  color: var(--teal); text-transform: uppercase; line-height: 1;
  margin-top: .2rem;
}
.brand-logo {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-dark); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
}

/* Nav links */
.navbar-menu { display: flex; align-items: center; gap: 2rem; }
.navbar-link {
  font-size: .88rem; font-weight: 600;
  color: var(--text); letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
  transition: color var(--transition); position: relative;
}
.navbar-link:hover { color: #c0392b; }
.navbar-link.active { color: var(--yellow); }

.navbar-cta {
  background: var(--teal-dark); color: var(--white) !important;
  padding: .5rem 1.3rem; border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.navbar-cta:hover {
  background: var(--teal) !important;
  transform: translateY(-1px);
}
.navbar-cta::after { display: none; }

.navbar-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--teal-dark); border-radius: 2px;
  transition: all var(--transition);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #2d8a78 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,194,41,.14) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,172,126,.15) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(var(--yellow) 1px, transparent 1px),
    linear-gradient(90deg, var(--yellow) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Floating leaves decoration */
.hero-leaf {
  position: absolute; opacity: .06;
  font-size: 8rem; color: var(--yellow);
  pointer-events: none;
}
.hero-leaf-1 { top: 10%; right: 8%; transform: rotate(20deg); font-size: 12rem; }
.hero-leaf-2 { bottom: 15%; right: 15%; transform: rotate(-30deg); font-size: 7rem; }
.hero-leaf-3 { top: 40%; right: 3%;  transform: rotate(45deg); font-size: 5rem; }

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(232,194,41,.4);
  border-radius: 50px;
  font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--yellow-light);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.15;
}
.hero h1 span { color: var(--yellow); }
.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem; max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-value {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 700; color: var(--yellow); line-height: 1;
}
.stat-label {
  font-size: .78rem; color: rgba(255,255,255,.55);
  letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: rgba(255,255,255,.35); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(232,194,41,.6), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ======================================================
   HERO VIDÉO
   ====================================================== */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 40, 38, 0.55) 0%,
    rgba(10, 40, 38, 0.45) 60%,
    rgba(10, 40, 38, 0.75) 100%
  );
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1150px;
}
#formulaire-partenaire {
  scroll-margin-top: 120px;
}
.hero-video-title {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-video-title span {
  color: var(--white);
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  animation: heroTitleIn .7s cubic-bezier(.22,.9,.3,1) forwards;
}
.hero-video-title span#hero-titre-1 { animation-delay: .15s; }
.hero-video-title span#hero-titre-2 { animation-delay: .4s; }
@keyframes heroTitleIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 780px) {
  .hero-video-title span { white-space: normal; }
}
.hero-video-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-video-stats {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 3rem;
  padding: 1.5rem 3rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ======================================================
   ACTIONS (À LA UNE / PROCHAINE / DERNIÈRE)
   ====================================================== */
.actions-section { background: var(--teal-dark); padding: 5.5rem 0; }
.actions-section .section-label { color: rgba(255,255,255,.6); }
.actions-section .section-title { color: var(--white); }
.actions-section .section-divider { background: linear-gradient(90deg, var(--yellow), var(--yellow-light)); }

.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.actions-side { display: contents; }

/* ── Nouvelle carte style event ── */
.action-card-new {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.action-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,92,90,.18);
}

/* Image 16:9 */
.acn-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.acn-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.action-card-new:hover .acn-img { transform: scale(1.04); }

/* Badge sur l'image */
.acn-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 50px;
}
.badge-aune { background: var(--yellow); color: var(--teal-dark); }
.badge-next { background: var(--green);  color: var(--white); }
.badge-last { background: var(--teal-dark); color: var(--white); }

/* Corps */
.acn-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }

.acn-header { display: flex; align-items: flex-start; gap: 1rem; }

.acn-date-box {
  flex-shrink: 0;
  background: var(--teal-dark);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  padding: .4rem .65rem;
  min-width: 48px;
}
.acn-day   { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.acn-month { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

.acn-type  { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: .2rem; }
.acn-title { font-size: 1rem; font-weight: 700; color: var(--teal-dark); line-height: 1.3; }

.acn-desc  { font-size: .85rem; color: var(--text-light); line-height: 1.6; flex: 1; }

.acn-meta  { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-light); }
.acn-meta i { color: var(--green); margin-right: .25rem; }

.acn-btns  { display: flex; gap: .75rem; flex-wrap: wrap; }
.acn-btns .btn { padding: .55rem 1.1rem; font-size: .82rem; }

@media (max-width: 900px) {
  .actions-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   REVUE DE PRESSE
   ====================================================== */
.presse { background: var(--white); }

.presse-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.presse-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.presse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.presse-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.presse-date {
  font-size: .78rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.presse-title {
  font-size: .95rem;
  color: var(--teal-dark);
  line-height: 1.4;
  font-weight: 700;
}

.presse-excerpt {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 1100px) {
  .presse-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .presse-row { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   ABOUT
   ====================================================== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-box {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  border-radius: 4px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-image-box::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C30 5 20 15 20 25 C20 35 30 40 30 40 C30 40 40 35 40 25 C40 15 30 5 30 5Z' fill='rgba(232,194,41,0.05)'/%3E%3C/svg%3E") repeat;
}
.about-img-placeholder {
  font-size: 8rem; opacity: .15; filter: drop-shadow(0 0 20px rgba(232,194,41,.3));
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--yellow); color: var(--teal-dark);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .number {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 700; line-height: 1;
}
.about-badge .text { font-size: .78rem; font-weight: 700; letter-spacing: .05em; }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.value-card {
  padding: 1.25rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.value-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.value-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--teal-dark); margin-bottom: .25rem; }
.value-desc { font-size: .84rem; color: var(--text-light); line-height: 1.5; }

/* ======================================================
   MISSIONS
   ====================================================== */
.missions { background: var(--white); }
.missions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.mission-card {
  padding: 2.5rem 2rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0); transition: transform var(--transition);
}
.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px); border-color: transparent;
}
.mission-card:hover::before { transform: scaleX(1); }
.mission-number {
  font-family: var(--font-head); font-size: 3rem;
  font-weight: 700; color: var(--yellow-pale); line-height: 1; margin-bottom: .5rem;
}
.mission-icon { font-size: 2rem; margin-bottom: 1rem; }
.mission-title { font-size: 1.2rem; margin-bottom: .75rem; }
.mission-text { font-size: .92rem; color: var(--text-light); line-height: 1.7; }

/* ======================================================
   TEAM
   ====================================================== */
.team { background: var(--teal-dark); }
.team .section-label  { color: var(--yellow-light); }
.team .section-title  { color: var(--white); }
.team .section-subtitle { color: rgba(255,255,255,.6); }
.team .section-divider { background: linear-gradient(90deg, var(--yellow), var(--yellow-light)); }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; transition: all var(--transition);
}
.team-card:hover {
  background: rgba(232,194,41,.08);
  border-color: rgba(232,194,41,.25);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border: 2px solid rgba(232,194,41,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem;
  color: var(--yellow); margin: 0 auto 1rem;
}
.team-name  { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.team-role  { font-size: .78rem; color: var(--yellow); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.team-bio   { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ======================================================
   EVENTS
   ====================================================== */
.events { background: var(--cream); }
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.event-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.event-date {
  background: var(--yellow); color: var(--teal-dark);
  border-radius: 4px; padding: .5rem .75rem;
  text-align: center; min-width: 52px;
}
.event-date .day   { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-type   { font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow-light); margin-bottom: .25rem; }
.event-title-sm { font-family: var(--font-head); font-size: 1rem; color: var(--white); }
.event-body   { padding: 1.25rem; flex: 1; }
.event-desc   { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.event-meta   { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-light); }
.event-meta span { display: flex; align-items: center; gap: .3rem; }

/* ======================================================
   CONTACT
   ====================================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-box {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--yellow-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .2rem; }
.contact-item-value { font-size: .95rem; color: var(--text); }

.social-links { display: flex; gap: .75rem; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all var(--transition);
}
.social-btn:hover { background: var(--white); color: var(--teal-dark); transform: translateY(-2px); }

/* Form */
.contact-form {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--teal-dark); letter-spacing: .02em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(232,194,41,.14);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ======================================================
   PARTENAIRES SLIDER
   ====================================================== */
.partenaires-section { background: var(--white); padding: 4rem 0; }

.partners-slider-wrap {
  overflow: hidden;
  position: relative;
  width: 960px;
  max-width: 100%;
  margin: 2.5rem auto 0;
  /* Fondu sur les bords */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollPartners 70s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

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

.partner-logo-item {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0.75;
}
.partner-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.partner-logo-item img {
  height: 60px;
  max-width: 140px;
  object-fit: contain;
  transition: filter var(--transition);
}
.partner-logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-light);
  white-space: nowrap;
}
.partner-logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* ======================================================
   NEWSLETTER BANNER
   ====================================================== */
.newsletter-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 1.6rem; color: var(--white); margin-bottom: .5rem; }
.newsletter-text p  { color: rgba(255,255,255,.65); font-size: .95rem; }
.newsletter-form    { display: flex; gap: .75rem; flex: 1; max-width: 420px; }
.newsletter-input {
  flex: 1; padding: .85rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--radius);
  background: rgba(255,255,255,.08); color: var(--white);
  font-family: var(--font-body); font-size: .95rem; outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--yellow); }

/* ======================================================
   FOOTER
   ====================================================== */
.footer { background: #071a18; color: rgba(255,255,255,.55); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-title { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-link:hover { color: var(--yellow); }
.footer-contact-item { font-size: .85rem; margin-bottom: .6rem; display: flex; align-items: flex-start; gap: .5rem; }
.footer-contact-item span:first-child { color: var(--yellow); min-width: 16px; text-align: center; }
.footer-bottom {
  padding-top: 1.5rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .83rem;
}
.footer-bottom a { color: var(--yellow); }

/* ======================================================
   ADHESION PAGE
   ====================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.plan-card {
  border: 2px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.plan-card.featured { border-color: var(--yellow); position: relative; }
.plan-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--yellow); color: var(--teal-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .8rem;
  border-radius: 0 0 6px 6px;
}
.plan-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 2rem; text-align: center;
}
.plan-card.featured .plan-header { background: linear-gradient(135deg, #0d3533, var(--teal-dark)); }
.plan-name  { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--yellow-light); margin-bottom: .5rem; }
.plan-price { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.6); }
.plan-period { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.plan-body  { padding: 2rem; flex: 1; background: var(--white); }
.plan-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-feature { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text); }
.plan-feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.plan-feature.disabled { color: var(--text-light); opacity: .5; }
.plan-feature.disabled::before { content: '×'; color: var(--text-light); }

.donation-section { background: var(--cream); }
.donation-amounts {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin: 2rem 0;
}
.amount-btn {
  padding: 1rem 2rem; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 1.1rem;
  font-weight: 700; cursor: pointer; background: var(--white);
  color: var(--teal-dark); transition: all var(--transition);
  font-family: var(--font-head);
}

.amount-btn:hover, .amount-btn.active {
  border-color: var(--yellow); background: var(--yellow);
  box-shadow: 0 4px 16px rgba(232,194,41,.3);
  color: var(--teal-dark);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .navbar-menu { gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar .container { display: flex; }
  .navbar-menu {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 1rem;
  }
  .navbar-menu.open { display: flex; }
  .navbar-partner-logo { display: none; }
  .navbar-toggle { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .missions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}
