/* =====================================================
   Les Amis de Paul-Axxel — Custom Styles
   Stack: Tailwind CDN + Alpine.js + Google Fonts
   ===================================================== */

:root {
  --blue:        #233A9F;
  --blue-dark:   #1A2D8F;
  --blue-light:  #4A66C8;
  --gold:        #C9A227;
  --gold-light:  #E8C64A;
  --bg:          #F3F5FF;
  --white:       #FFFFFF;
  --text:        #1C1F3A;
  --text-muted:  #6B7280;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(35, 58, 159, 0.10);
  --shadow-lg:   0 12px 48px rgba(35, 58, 159, 0.20);
}

html { scroll-behavior: smooth; }

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  margin: 0;
}

section[id] { scroll-margin-top: 100px; }

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAVBAR ────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 1.5rem;
  pointer-events: none;
}

.navbar {
  background: rgba(35, 58, 159, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 0.65rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(35, 58, 159, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: all;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-dropdown-btn {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.nav-links a.active { background: rgba(255, 255, 255, 0.2); color: white; }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 18px;
  padding: 0.5rem;
  min-width: 230px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 58, 159, 0.07);
}

.dropdown-menu a {
  color: var(--text) !important;
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--blue) !important;
  padding-left: 1.3rem;
}

.dropdown-menu a small {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 1px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.25); }

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(35, 58, 159, 0.98);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }

.mobile-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255, 255, 255, 0.22); }

/* ── HERO ──────────────────────────────────────── */
.hero-section {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(35, 58, 159, 0.08);
  color: var(--blue);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 1.5rem 0;
}
.hero-title span { color: var(--blue); }

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 2.5rem 0;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-pill {
  background: white;
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 100px;
}
.stat-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-pill span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.18;
}

/* ── SECTIONS ──────────────────────────────────── */
.section { padding: 5rem 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 1rem 0;
}
.section-title span { color: var(--blue); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ── EVENT CARDS ───────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.event-card-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.event-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.event-card:hover .event-card-thumb img { transform: scale(1.07); }

.event-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-card-body { padding: 1.5rem; }

.event-card-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.event-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem 0;
}

.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.3s;
}
.event-card:hover .event-card-cta { gap: 0.7rem; }

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 58, 159, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1C1F3A;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-white {
  background: white;
  color: var(--blue);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── SUPPORT BANNER ────────────────────────────── */
.support-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.support-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.support-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: rgba(201, 162, 39, 0.08);
  border-radius: 50%;
}
.support-inner { position: relative; z-index: 1; }

.support-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.support-photo-grid div {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.support-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.support-photo-grid div:hover img { transform: scale(1.08); }

/* ── CONTACT ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 340px;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-field { margin-bottom: 1.1rem; }

.form-input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #E5E9F8;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: #FAFBFF;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  display: block;
  resize: vertical;
}
.form-input:focus {
  border-color: var(--blue);
  background: white;
}
.form-input::placeholder { color: #A5B1D0; }

/* ── GALLERY (event pages) ─────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 58, 159, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── LIGHTBOX ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-img {
  max-height: 88vh;
  max-width: 88vw;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  display: block;
}

.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  z-index: 2;
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.22); }

.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  pointer-events: none;
}

/* ── PAGE HERO (event pages) ───────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 5.5rem 0 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: white; }

.page-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
}

.photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(35, 58, 159, 0.08);
  color: var(--blue);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.1;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: -2rem;
  display: block;
}

.testimonial-text {
  font-size: .925rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  margin: 0 0 1.25rem 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid #EEF0FA;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .875rem;
  color: var(--text);
  font-weight: 600;
}
.testimonial-author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── COMING SOON (adhesion) ────────────────────── */
.soon-wrapper {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.soon-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 36px rgba(35, 58, 159, 0.3);
}

.soon-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.2;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.soon-dot:nth-child(2) { animation-delay: 0.2s; }
.soon-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.2; }
  40%            { transform: scale(1.4); opacity: 0.8; }
}

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: #233A9F;
  color: white;
  padding: 4.5rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin: 0;
}

.footer-col-title {
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}

.footer-line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 1.5rem 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── EVENT INTRO GRID (poster + texte sur pages événements) ── */
.event-intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* ── RESPONSIVE ────────────────────────────────── */

/* Large tablet : 901px → 1024px */
@media (max-width: 1024px) {
  .events-grid { gap: 1.25rem; }
}

/* Tablet : ≤ 900px */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .hero-img-wrap { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: .95rem; }

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

  .support-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    gap: 2rem;
  }
  .support-photo-grid { grid-template-columns: repeat(3, 1fr); max-width: 400px; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-visual { height: 240px; }

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

  .event-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .event-intro-grid > :first-child { max-width: 200px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* Petite tablette / grand mobile : ≤ 768px */
@media (max-width: 768px) {
  /* Navbar : on cache les liens texte un peu plus tôt */
  .nav-links li:not(.nav-dropdown) a:not(.active) { display: none; }
}

/* Mobile : ≤ 680px */
@media (max-width: 680px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-wrapper { padding: 0 1rem; }

  .section { padding: 3rem 0; }
  .hero-section { padding: 1.5rem 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }
  .footer-desc { max-width: 100%; }

  .page-hero { padding: 3.5rem 0 2.5rem; }
  .page-hero-title { font-size: 1.8rem; }
  .breadcrumb { flex-wrap: wrap; gap: 0.3rem; font-size: .75rem; }

  .support-photo-grid { max-width: 100%; }

  .event-intro-grid { gap: 1.25rem; }
  .event-intro-grid > :first-child { max-width: 160px; }

  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
  .lb-close { top: 0.75rem; right: 0.75rem; }
}

/* Très petit mobile : ≤ 420px */
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; }
  .stat-pill { min-width: 100%; }
  .navbar { padding: 0.55rem 1.25rem; }
  .nav-logo img { height: 38px; }
  .section-title { font-size: 1.5rem; }
  .contact-form-card { padding: 1.5rem 1.25rem; }
  .support-banner { padding: 2rem 1.25rem; }
}
