/* Brand colors */
:root {
  --blue: #0971BC;
  --green: #699C19;
  --light: #f5f5f5;
  --text: #333;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-image: url("assets/bg1.png"); /* chemin relatif recommandé */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  margin: 20px; /* éviter les marges globales sur body */
  padding: 0 2rem; /* padding latéral conservé */

  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background-color: var(--light); /* si tu veux une couleur de fond fallback */
}


/* Header sticky + animation + shadow on scroll */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  transition: box-shadow 0.3s ease;
  animation: slideDown 0.6s ease;
}
header.scrolled { box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Logo */
.logo { height: 60px; display: block; }

/* Nav center: desktop horizontal */
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-center ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-center a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.nav-center a:hover { text-decoration: underline; }

/* Right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language selector */
.lang-selector { position: relative; }
#lang-btn {
  background-color: white;
  color: var(--blue);
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.flag-icon { width: 20px; height: 20px; }
#lang-menu {
  position: absolute;
  top: 115%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  display: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
#lang-menu li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
#lang-menu li:hover { background-color: #f3f3f3; }
.lang-selector.open #lang-menu { display: block; }

/* Social icons in navbar */
.social-nav { display: flex; gap: 0.8rem; align-items: center; }
.social-nav a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.social-nav a:hover { color: var(--green); transform: translateY(-1px); }

/* Hamburger (mobile only) */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Collapsible nav for mobile */
#navbar { transition: max-height 0.4s ease; overflow: hidden; }

/* Conteneur du bouton dans le header */
.nav-support {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}

/* Ajustement du bouton dans le header */
header .support-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border: 2px solid white;
  border-radius: 6px;
  white-space: nowrap;
}


/* Hero */
.hero { position: relative; text-align: center; margin: 1rem 0; }
.hero-img {
  width: 100%; height: auto; max-height: 520px; object-fit: cover; border-radius: 8px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(9, 113, 188, 0.7);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
}



/* ABOUT SECTION */
.about {
  /* background: #ffffff url('assets/textures/pattern-light.png') repeat; */
  background: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}



.about-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

/* Ligne décorative verticale */
/* Ligne décorative verticale */
.about-container {
  position: relative;
}

.about-container::after {
  animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}


/* Icône décorative au sommet de la ligne */
.decor-icon {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: white;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.decor-icon i {
  font-size: 1.2rem;
  color: var(--green);
}


.about-container h2 {
  width: 100%;
  text-align: center;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.about-text {
  flex: 1.2;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: translateY(-8px);
}


/* Icônes de rôle */
/* Section équipe */
.team-section {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 12px;
}

.team-section h2 {
  text-align: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Grille horizontale sur desktop */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

/* Carte membre */
.team-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* En-tête avec badge */
.team-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

/* Badge de rôle */
.role-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  color: white;
  text-transform: uppercase;
}

/* Couleurs spécifiques */
.role-badge.founder {
  background-color: #0077b6;
}
.role-badge.operations {
  background-color: #52b788;
}
.role-badge.digital {
  background-color: #f77f00;
}

/* Rôle + icône */
.team-role {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  text-align: center;
}

.role-icon {
  font-size: 1.2rem;
  color: var(--blue);
  margin-right: 0.5rem;
}

/* Responsive : grille devient colonne */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}






/* Texte étendu */
.mission-extended {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

/* Personas */
.personas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.persona {
  flex: 1;
  min-width: 200px;
  background-color: #e0f5e0;
  padding: 1rem;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personas-title {
  text-align: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.persona:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}



/* Benefits Sections */
.benefits {
  padding: 2rem;
  background-color: white;
  margin: 1rem 0;
  border-radius: 8px;
}

.benefits h2 {
  text-align: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.benefit-list {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.benefit {
  background-color: #eaf6e0;
  padding: 1rem;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}




/* SECTION REALISATIONS */
.realism {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.realism h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--blue);
}

.realism-block {
  margin-bottom: 3rem;
}

.realism-block h3 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

/* Deux colonnes */
.realism-two-columns {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Ordre par défaut : image à gauche, texte à droite */
.realism-two-columns .realism-image {
  order: 1;
}

.realism-two-columns .realism-text {
  order: 2;
}

/* Sous-section 2 .reverse : texte à gauche, image à droite */
.realism-two-columns.reverse .realism-image {
  order: 2;
}

.realism-two-columns.reverse .realism-text {
  order: 1;
}

/* IMAGE */
.realism-image {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 0.5rem;
  margin: 0 auto;
}

.realism-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.realism-image img:hover {
  transform: scale(1.03);
}

/* TEXTE */
.realism-text {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
}

.realism-text h4 {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.2rem;
}

.realism-text p {
  line-height: 1.6;
  color: #555;
  font-size: 1rem;
}

.realism-text a {
  color: var(--blue);
  font-weight: bold;
  text-decoration: underline;
}

/* RESPONSIVE */



/* Timeline step */
.timeline-step {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0.4;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--blue);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(9, 113, 188, 0.2);
}


/* Animation de pulsation sur les points */
.timeline-step::after {
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 3px rgba(9, 113, 188, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 0 0 6px rgba(9, 113, 188, 0.35);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 3px rgba(9, 113, 188, 0.2);
  }
}


/* Ligne horizontale décorative entre les sous-sections */
.realism-divider {
  width: 100%;
  height: 4px;
  margin: 2.5rem 0;
  background: linear-gradient(to right, transparent, var(--green), var(--blue), transparent);
  border-radius: 4px;
  position: relative;
  opacity: 0.7;
  animation: glowLine 4s ease-in-out infinite;
}

@keyframes glowLine {
  0% { opacity: 0.4; }
  50% { opacity: 0.9; }
  100% { opacity: 0.4; }
}


/* Boîte de validation carrée */

/* Boîte de validation carrée avec bordure verte */
.check-box {
  width: 42px;
  height: 42px;
  background-color: white;
  border: 2px solid var(--green);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Check vert centré */
.check-mark {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  transform: translateY(-1px);
}
.check-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}







/* GALLERY SECTION */
.gallery {
  margin-top: 3rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--blue);
}

/* Grille responsive */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* LIGHTBOX */
.lightbox {
  display: flex;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15 138 227 / 75%);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: fadeZoom 0.4s ease;
}

.lightbox-caption {
  margin-top: 1rem;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  max-width: 80%;
  animation: fadeIn 0.6s ease;
}


@keyframes fadeZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Bouton fermer */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: var(--green);
}

/* Contrôles carrousel */
.lightbox-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.prev, .next {
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 50%;
}


.prev:hover, .next:hover {
  color: var(--green);
}


/* Légende dans la lightbox */
.lightbox-caption {
  margin-top: 1rem;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  animation: fadeIn 0.6s ease;
}

/* Transition en fondu */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* Get In Touch section */
.get-in-touch {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  margin: 2rem 0;
  border-radius: 8px;
}

.get-in-touch h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--blue);
}

.contact-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-grid .map,
.contact-grid .address {
  flex: 1;
  min-width: 280px;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.address h3 {
  margin-top: 0;
  color: var(--green);
}

.address p {
  margin: 0.5rem 0;
  font-size: 1rem;
}


.support-btn-container {
  margin-top: 1.2rem;
  text-align: left; /* ou center si tu préfères */
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.75rem 1.6rem;
  border-radius: 8px;

  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: white;

  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.support-btn i {
  font-size: 1.2rem;
}

/* Hover premium */
.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, var(--green), var(--blue));
}






/* Footer */
footer {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 8px;
}
footer .social-icons {
  margin: 0.5rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
footer .social-icons a {
  color: white;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}
footer .social-icons a:hover { color: var(--blue); }

/* Fade-in and reveal on scroll */
.fade-in { animation: fadeIn 1s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .personas, .benefit-list { flex-direction: column; }
  .hero-text { left: 52%; top: 48%; font-size: 0.95rem; padding: 0.8rem 1rem; }
}
@media (max-width: 768px) {
  body { padding: 0 1rem; margin: 0;} /* tighter lateral padding on mobile */

  header { gap: 0.8rem; }

  /* Show hamburger, collapse nav */
  .hamburger { display: flex; }
  #navbar { max-height: 0; width: 100%; }
  #navbar.open { max-height: 300px; }

  .nav-center { justify-content: flex-start; width: 100%; }
  .nav-center ul {
    flex-direction: column;
    gap: 1rem;
    background-color: var(--blue);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .nav-right { width: auto; margin-left: auto; }

  /* Hero text becomes block */
  .hero-text {
    position: relative;
    background: var(--blue);
    margin-top: -1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    left: 50%;
    top: auto;
  }

  .logo { height: 50px; }

  .about-container::after, .decor-icon { display: none; }
  .about-text, .about-image { transform: none !important; opacity: 1 !important; }
  .cta-about { width: 100%; text-align: center; }

  .about-container {
    flex-direction: column;
  }

  .about-image img {
    margin-top: 1rem;
  }

  /* Realism section: stacked columns */
 
  .realism-two-columns {
    flex-direction: column;
    align-items: center;
  }

  .realism-image,
  .realism-text {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .realism-text h4 {
    font-size: 1.3rem;
  }

  .realism-text p {
    font-size: 1.05rem;
  }

  .realism-image img {
    aspect-ratio: 16 / 9;
    max-height: 300px;
  }

  /* Inversion des colonnes annulée sur mobile */
  .realism-two-columns.reverse {
    flex-direction: column;
  }

  .timeline-step { display: none; }

  .realism-text .check-box {
    margin: 1rem auto 0;
  }
  
}



@media (max-width: 600px) {
  body { margin: 1px; }
  .hero-text {
    position: static;
    transform: none;
    background-color: var(--blue);
    margin-top: -1rem;
    border-radius: 6px;
    padding: 0.8rem 1rem;
  }

  .realism-text .check-box {
    margin: 1rem auto 0;
  }


}






/* PAGE NOUS SOUTENIR */
.support-page {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.support-page h1 {
  text-align: center;
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.support-page .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* DONATION GRID */
.donation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Bloc englobant */
.don-block {
  flex: 1 1 320px;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.don-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Carte interne */
.don-card {
  text-align: center;
  margin-bottom: 1.5rem;
}

.don-card h2 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.don-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.qr-img {
  width: 180px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

.qr-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Boutons */
.don-btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.don-btn:hover {
  transform: translateY(-2px);
}

.don-btn.paypal { background: #003087; }
.don-btn.paypal:hover { background: #0055ff; }

.don-btn.flutter { background: #f5a623; }
.don-btn.flutter:hover { background: #ff8c00; }

/* Progression */
.don-progress {
  text-align: center;
}

.don-progress h3 {
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  width: 0%;
  transition: width 1s ease;
}

.progress-text {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  width: 0%;
  transition: width 0.6s ease-out;
}



/* Responsive */
@media (max-width: 768px) {
  .donation-options {
    flex-direction: column;
    align-items: center;
  }

  .don-block {
    width: 100%;
    max-width: 100%;
  }
}



