/* ============================================================
   CCASNJ – Cameroon Cultural Association of Southern New Jersey
   Recovered & Rebuilt – 2026
   Colors: Cameroon flag — green #007a3d, red #ce1126, yellow #fcd116
   Navy: #0d1f3c (deep trust), white, light grays
   ============================================================ */

:root {
  --green:  #007a3d;
  --red:    #ce1126;
  --yellow: #fcd116;
  --navy:   #0d1f3c;
  --white:  #ffffff;
  --gray-50:  #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(13,31,60,0.09);
  --shadow-lg: 0 8px 40px rgba(13,31,60,0.14);
  --transition: 0.22s ease;
  --max-w: 1120px;
  --header-h: 68px;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), transform var(--transition), text-decoration-color var(--transition);
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(252, 209, 22, 0.8);
  outline-offset: 3px;
}
address { font-style: normal; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section { padding: 5rem 0; }
.section--alt { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-green { background: var(--green); }

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

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.15; color: var(--navy); }
h2 { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 700; line-height: 1.25; color: var(--navy); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: #444; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-sub { color: var(--gray-600); max-width: 640px; margin: 0 auto 0; font-size: 1.05rem; }

/* ── ALERT BAR ── */
.alert-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.alert-bar a { color: var(--yellow); font-weight: 600; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-block { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-emblem {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.1rem; color: var(--navy); }
.logo-text span { font-size: 0.72rem; color: var(--gray-600); }

.site-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.88rem; font-weight: 600; color: var(--gray-800);
  padding: 0.45rem 0.7rem; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover {
  background: var(--gray-100);
  text-decoration: none;
  transform: translateY(-1px);
}
.site-nav a.active { color: var(--green); }
.btn-donate {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.btn-donate:hover { background: #005f2f !important; }
.btn-donate.active { background: var(--green) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem 1.5rem 1.5rem; gap: 0.25rem;
    border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow);
    margin-left: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.65rem 0.75rem; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d62 60%, #007a3d 100%);
  min-height: 520px;
  display: flex; align-items: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(252,209,22,0.18); border: 1px solid rgba(252,209,22,0.4);
  color: var(--yellow); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.7rem 1.5rem; border-radius: 8px;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  border: 2px solid transparent;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.16);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: #005f2f; border-color: #005f2f; }
.btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn-yellow:hover { background: #e8bc00; border-color: #e8bc00; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stat-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; }
.stat-item .num { font-size: clamp(2rem,4vw,2.8rem); font-weight: 900; color: var(--yellow); font-family: Georgia, serif; }
.stat-item .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ── FLAG STRIPE ── */
.flag-stripe { display: flex; height: 6px; }
.flag-stripe .g { flex: 1; background: var(--green); }
.flag-stripe .r { flex: 1; background: var(--red); }
.flag-stripe .y { flex: 1; background: var(--yellow); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d62 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--yellow); text-decoration: none; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 1.75rem; flex: 1; }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 12px; margin-bottom: 0.75rem;
}
.card-accent-top { border-top: 4px solid var(--green); }
.card-accent-top.red { border-top-color: var(--red); }
.card-accent-top.yellow { border-top-color: var(--yellow); }

/* ── COMMUNITIES ── */
.com-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }

/* ── CALLOUT ── */
.callout {
  background: #e8f5e9; border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0; padding: 1rem 1.25rem;
  font-size: 0.92rem; margin-bottom: 1rem;
}
.callout.red { background: #fff0f1; border-color: var(--red); }
.callout.green { background: #e8f5e9; border-color: var(--green); }

/* ── COMMITTEE LIST ── */
.committee-list { list-style: none; }
.committee-list li {
  padding: 0.45rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem; color: #444;
  display: flex; align-items: center; gap: 0.6rem;
}
.committee-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.committee-list li:last-child { border-bottom: none; }

/* ── IMPACT ITEMS ── */
.impact-item { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; align-items: flex-start; }
.impact-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: #e8f5e9; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.impact-icon.red { background: #fff0f1; }
.impact-icon.yellow { background: #fffbe6; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.4rem; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -1.7rem; top: 0.4rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year {
  font-size: 0.78rem; font-weight: 800; color: var(--green);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.9rem; }

/* ── EVENTS ── */
.event-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--green); margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.event-card.past { border-left-color: var(--gray-400); opacity: 0.85; }
.event-date { font-size: 0.78rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.event-card.past .event-date { color: var(--gray-600); }
.event-card h3 { margin-bottom: 0.5rem; }
.event-card p { font-size: 0.92rem; margin-bottom: 1rem; }

/* ── DONATE WIDGET ── */
.donate-widget {
  background: linear-gradient(135deg, var(--navy), #0a3d62);
  border-radius: 16px; padding: 2rem; color: var(--white);
}
.donate-widget h3 { color: var(--white); margin-bottom: 0.4rem; }
.donate-widget p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.25rem; }
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 1rem; }
.amount-btn {
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 0.65rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.custom-amount { margin-bottom: 1rem; }
.custom-amount input {
  width: 100%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.95rem;
}
.custom-amount input::placeholder { color: rgba(255,255,255,0.5); }
.freq-toggle { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.freq-btn {
  flex: 1; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); padding: 0.5rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.freq-btn.active, .freq-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── FEE BOX ── */
.fee-box {
  background: var(--navy); color: var(--white);
  border-radius: 12px; padding: 1.5rem; text-align: center;
}
.fee-amount { font-size: 3rem; font-weight: 900; color: var(--yellow); font-family: Georgia, serif; }
.fee-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ── CONTACT FORM ── */
.contact-form label, .membership-form label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.35rem; margin-top: 1rem;
}
.contact-form input, .contact-form select, .contact-form textarea,
.membership-form input, .membership-form select, .membership-form textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 0.95rem; color: var(--gray-800);
  transition: border-color var(--transition);
  background: var(--white);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus,
.membership-form input:focus, .membership-form select:focus, .membership-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,61,0.1);
}
.contact-form textarea, .membership-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid var(--green);
  border-radius: 8px; padding: 1rem 1.25rem; color: var(--green);
  font-weight: 600; margin-bottom: 1rem;
}

/* ── CONTACT INFO LIST ── */
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-200); align-items: flex-start; }
.contact-info-list li:last-child { border-bottom: none; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; width: 36px; text-align: center; }

/* ── MAP ── */
.map-wrapper iframe { width: 100%; height: 280px; border-radius: 12px; border: none; }

/* ── ACCORDION ── */
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; font-size: 0.98rem; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.accordion-trigger::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--green); transition: transform var(--transition); }
.accordion-trigger.open::after { transform: rotate(45deg); }
.accordion-trigger:hover { color: var(--green); }
.accordion-content { display: none; padding-bottom: 1.1rem; }
.accordion-content.open { display: block; }
.accordion-content p { font-size: 0.92rem; color: #555; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 0.3rem 0.8rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; border: 1px solid var(--gray-200);
  background: var(--gray-100); color: var(--gray-800);
}
.badge.irs { background: #fff8dc; color: #8b6914; border-color: #e6c429; }
.badge-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--gray-200); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--gray-600);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}
.social-links a:hover {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); text-decoration: none;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.2);
}
.social-links a:active { transform: translateY(0) scale(0.96); }
.social-links a:focus-visible {
  outline: 3px solid rgba(252, 209, 22, 0.8);
  outline-offset: 3px;
}

/* ── FOOTER ── */
.site-footer { background: #0a0f1e; padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 1rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); text-decoration: none; }
.footer-col address { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,0.55); }
.footer-col address a:hover { color: var(--yellow); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 1.5rem; max-width: var(--max-w); margin: 0 auto;
}
.footer-bottom span { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* ── BOARD OF DIRECTORS ── */
.board-card {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--green);
}
.board-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--yellow);
}
.board-card-inner {
  padding: 1.75rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-image,
.profile-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  margin-bottom: 1rem;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow var(--transition), border-color var(--transition);
}
.board-card:hover .profile-image,
.board-card:hover .profile-placeholder,
.exec-card:hover .profile-image,
.exec-card:hover .profile-placeholder {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(13, 31, 60, 0.18);
  border-color: var(--yellow);
}
.profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.board-card .profile-image {
  border-color: var(--green);
}
.exec-card .profile-image {
  border-color: var(--red);
}
.board-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.board-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.board-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.board-bio {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.leadership-details {
  width: 100%;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
  text-align: left;
}
.leadership-details summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  transition: color var(--transition), transform var(--transition);
}
.leadership-details summary::-webkit-details-marker { display: none; }
.leadership-details summary::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}
.leadership-details[open] summary::after { transform: rotate(45deg); }
.leadership-details summary:hover {
  color: var(--navy);
  transform: translateX(2px);
}
.leadership-details summary:focus-visible {
  outline: 3px solid rgba(252, 209, 22, 0.8);
  outline-offset: 3px;
  border-radius: 3px;
}
.leadership-detail-content {
  animation: leadershipFadeIn 220ms cubic-bezier(0.23, 1, 0.32, 1) both;
}
@keyframes leadershipFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.leadership-details p {
  margin: 0.75rem 0 0;
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.55;
}
.leadership-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 0.9rem;
  padding: 0.65rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.leadership-close:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(13, 31, 60, 0.16);
}
.leadership-close:active { transform: translateY(0) scale(0.98); }
.leadership-close:focus-visible {
  outline: 3px solid rgba(252, 209, 22, 0.8);
  outline-offset: 3px;
}

/* ── EXECUTIVE LEADERSHIP ── */
.exec-card {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--red);
}
.exec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-left-color: var(--yellow);
}
.exec-card-inner {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exec-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.exec-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.exec-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.exec-bio {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.exec-card .leadership-details summary { color: var(--red); }
.exec-card .leadership-details summary:hover { color: var(--navy); }

/* ── RESPONSIVE TOUCH-UPS ── */
@media (max-width: 640px) {
  .hero { padding: 3.5rem 1.5rem; min-height: auto; }
  .section { padding: 3.5rem 0; }
  .stat-strip .container { gap: 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .btn:hover,
  .site-nav a:hover,
  .social-links a:hover,
  .leadership-details summary:hover,
  .leadership-close:hover,
  .board-card:hover .profile-image,
  .board-card:hover .profile-placeholder,
  .exec-card:hover .profile-image,
  .exec-card:hover .profile-placeholder {
    transform: none !important;
  }
  .leadership-detail-content { animation: none !important; }
  .leadership-close:hover { transform: none !important; }
}

/* Language switcher — prominent globe + EN/FR segmented control, always visible in the header */
.lang-switch {
  display: flex; align-items: center; gap: 0.1rem;
  background: #e9f3ed; border: 2px solid var(--green);
  border-radius: 999px; padding: 0.18rem 0.3rem 0.18rem 0.55rem;
  flex-shrink: 0;
}
.lang-globe { font-size: 1.05rem; line-height: 1; margin-right: 0.2rem; }
.lang-opt {
  border: none; background: transparent; cursor: pointer;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--gray-700); padding: 0.34rem 0.6rem; border-radius: 999px;
  transition: background 160ms, color 160ms;
}
.lang-opt:hover { color: var(--green); }
.lang-opt.active { background: var(--green); color: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 160ms;
}
.wa-float:hover { transform: scale(1.08); }

/* Announcements */
.announce-card {
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 14px rgba(13,31,60,0.07);
}
.announce-card .announce-date {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.announce-card h3 { margin: 0.25rem 0 0.35rem; color: var(--navy); font-size: 1.05rem; }
.announce-card p { margin: 0; color: #555; font-size: 0.93rem; }

/* Countdown */
.countdown-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}
.countdown-cell {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  min-width: 78px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  color: #fff;
}
.countdown-cell .cd-num { font-size: 1.8rem; font-weight: 900; font-family: Georgia, serif; }
.countdown-cell .cd-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }

/* Member portal card */
.member-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,31,60,0.18);
  background: linear-gradient(135deg, #0d1f3c 0%, #007a3d 130%);
  color: #fff;
}
.member-card .mc-top { padding: 1.4rem 1.5rem 0.4rem; display: flex; align-items: center; gap: 0.9rem; }
.member-card .mc-emblem {
  width: 54px; height: 54px; border-radius: 50%;
  background: #fcd116; color: #0d1f3c;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; flex-shrink: 0;
}
.member-card .mc-name { font-size: 1.25rem; font-weight: 800; margin: 0; }
.member-card .mc-role { opacity: 0.85; font-size: 0.88rem; margin: 0.15rem 0 0; }
.member-card .mc-body { padding: 1rem 1.5rem 1.5rem; }
.member-card .mc-code {
  font-size: 2rem; font-weight: 900; letter-spacing: 0.25em;
  font-family: Georgia, serif; color: #fcd116; margin: 0.4rem 0;
}
.member-card .mc-qr { background: #fff; border-radius: 12px; padding: 0.6rem; display: inline-block; margin-top: 0.6rem; }

/* ── INSTALL BANNER (one-time, dismissible) ── */
#install-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9000;
  display: flex; align-items: center; gap: 0.9rem;
  background: #0d1f3c; color: #fff; border-radius: 14px;
  padding: 0.85rem 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: ib-in 0.35s ease-out;
}
@keyframes ib-in { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
#install-banner .ib-text { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
#install-banner .ib-text strong { font-size: 0.95rem; }
#install-banner .ib-text span { font-size: 0.8rem; opacity: 0.8; }
#install-banner .ib-cta {
  background: var(--green, #007a3d); color: #fff; border: none; border-radius: 9px;
  padding: 0.55rem 1rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}
#install-banner .ib-later {
  background: transparent; color: #fff; border: none; font-size: 1.1rem;
  cursor: pointer; opacity: 0.7; padding: 0.3rem 0.5rem;
}
@media (min-width: 640px) { #install-banner { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 380px; } }

/* ── GALLERY ── */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gal-item { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); cursor: zoom-in; }
.gal-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.25s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item figcaption { padding: 0.6rem 0.8rem; font-size: 0.85rem; color: #444; }
.gal-hero img { width: 100%; max-height: 480px; object-fit: contain; background: #0d1f3c; border-radius: 14px; }
#lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
#lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; }
#lightbox .lb-x { position: absolute; top: 1rem; right: 1.2rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
#lightbox .lb-cap { position: absolute; bottom: 1.2rem; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.9rem; padding: 0 2rem; }
