/* ============================================
   FANA ACADÉMIE — Main Stylesheet
   French Avenir North America
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:    #1a3a5c;
  --navy-dk: #0f2540;
  --orange:  #e07b39;
  --orange-lt: #fff0e4;
  --cream:   #fdfcf8;
  --warm-bg: #f7f5f0;
  --text:    #2d2d2d;
  --muted:   #888;
  --border:  #f0ebe0;
  --radius:  20px;
  --radius-sm: 12px;
  --shadow:  0 8px 28px rgba(26,58,92,0.10);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Top Bar ── */
.topbar {
  background: var(--navy-dk);
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}
.topbar a {
  color: #a8c8e8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar .fb-btn {
  margin-left: auto;
  background: #1877f2;
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 11px;
}

/* ── Navigation ── */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  margin-right: 20px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 130px;
  width: auto;
}
.nav-logo-text .brand {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.nav-logo-text .tagline {
  font-size: 9px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-items {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #444;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--orange); border-bottom-color: var(--orange); }
.nav-item > a.dons { color: var(--orange); }
.arr { font-size: 7px; opacity: 0.5; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0 0 18px 18px;
  min-width: 220px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  z-index: 500;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 13px;
  color: #333;
  font-weight: 700;
  border-bottom: 0.5px solid #f5f0e8;
  transition: all 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--orange-lt); color: var(--orange); padding-left: 26px; }
.dropdown a .di { font-size: 16px; }

/* ── Mega menu ONLY for À propos ── */

.mega-menu {
  width: 950px;

  padding: 30px;

  display: none;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.nav-item:hover .mega-menu {
  display: grid;
}

.mega-col h4 {
  font-size: 12px;

  font-weight: 900;

  color: var(--navy);

  margin-bottom: 14px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.mega-col a {
  border-bottom: none;

  padding: 10px 0;

  font-size: 14px;
}

.mega-col a:hover {
  background: transparent;

  color: var(--navy);

  padding-left: 8px;
}
.nav-lang {
  display: flex;
  gap: 5px;
  padding: 0 10px;
  align-items: center;
}
.lang-btn {
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 800;
  border: 2px solid var(--orange);
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover { background: var(--orange); color: #fff; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;

  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    margin-left: auto;
  }

  .nav-items {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 16px;
  }

  .nav-items.open {
    display: flex;
  }

  .nav-item > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    padding-left: 16px;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  .mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-warm { background: var(--orange); color: #fff; }
.btn-warm:hover { background: #c96b2a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,123,57,0.35); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0f2540; transform: translateY(-2px); }

/* ── Section base ── */
.section { padding: 60px 32px; }
.section-alt { background: var(--warm-bg); }
.section-dark { background: var(--navy); }

.sec-head { text-align: center; margin-bottom: 40px; }
.pill {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pill-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}
.sec-head h2.light { color: #fff; }
.sec-head p { font-size: 14px; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-blob1 {
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(224,123,57,0.12);
  animation: float 6s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: float 8s ease-in-out infinite reverse;
}
.hero-blob3 {
  position: absolute; top: 30%; left: 20%;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(224,123,57,0.06);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(224,123,57,0.2);
  border: 1px solid rgba(224,123,57,0.4);
  color: #ffa96a;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 em { color: var(--orange); font-style: normal; }
.hero-content p { color: #a8c0d8; font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; display: block;
}

/* ── Welcome strip ── */
.welcome {
  background: var(--orange-lt);
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid #f0dfc8;
}
.welcome h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.welcome p { font-size: 14px; color: #666; max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.svc {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.svc:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(224,123,57,0.15);
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--orange-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
}
.svc h3 { font-size: 12px; font-weight: 800; color: var(--navy); line-height: 1.4; }
.svc .lire { font-size: 11px; color: var(--orange); margin-top: 8px; font-weight: 700; }

/* ── Events ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.ev {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.ev:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ev-img {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a8c 100%);
  font-size: 11px; color: rgba(255,255,255,0.3);
}
.ev-img.warm { background: linear-gradient(135deg, #e07b39 0%, #f09a5a 100%); }
.ev-img.teal { background: linear-gradient(135deg, #2a7c6a 0%, #3aac9a 100%); }
.ev-img img { width: 100%; height: 100%; object-fit: cover; }
.ev-body { padding: 18px; }
.ev-date { font-size: 11px; color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.ev-body h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin: 5px 0 5px; line-height: 1.3; }
.ev-body p { font-size: 12px; color: var(--muted); }
.ev-body .lire-suite {
  display: inline-block; margin-top: 12px;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 6px 16px; border-radius: 20px;
  transition: background 0.2s;
}
.ev-body .lire-suite:hover { background: var(--orange); }

/* ── Calendar ── */
.cal-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.cal-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-hd h3 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--navy); }
.cal-nav-btn {
  background: var(--orange-lt); color: var(--orange);
  border: none; padding: 8px 16px; border-radius: 20px;
  cursor: pointer; font-size: 16px; font-weight: 800;
  font-family: 'Poppins', sans-serif; transition: all 0.2s;
}
.cal-nav-btn:hover { background: var(--orange); color: #fff; }
.cal-days-hd {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 3px; margin-bottom: 6px;
}
.cal-dname {
  text-align: center; font-size: 16px; font-weight: 800;
  color: #bbb; text-transform: uppercase; padding: 5px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cd {
  text-align: center; padding: 9px 2px;
  font-size: 16px; border-radius: 10px;
  color: #555; font-weight: 600; cursor: default;
}
.cd.has-event {
  background: var(--navy); color: #fff;
  font-weight: 800; cursor: pointer;
}
.cd.has-event:hover { background: var(--orange); }
.cd.today {
  background: var(--orange-lt); color: var(--orange);
  font-weight: 900; border: 2px solid var(--orange);
}
.cal-legend {
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-top: 14px;
  
}
/* ── Regions ── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}
.reg {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.reg:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.reg-top {
  background: var(--navy); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
}
.reg-emoji { font-size: 32px; }
.reg-top h3 { font-size: 17px; font-weight: 900; color: #fff; }
.reg-top p { font-size: 11px; color: #a8c8e8; margin-top: 2px; }
.reg-body { background: #fff; padding: 18px 24px; }
.reg-body .addr { font-size: 13px; color: var(--navy); font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.reg-body .info { font-size: 12px; color: #666; margin-bottom: 4px; display: flex; gap: 8px; }

/* ── Partners ── */
.partners-section {
  background: var(--navy-dk);
  padding: 36px 32px;
  text-align: center;
}
.partners-label {
  font-size: 11px; font-weight: 800; color: #4a7aac;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.partners-row {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.pbox {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 700;
}
.pbox img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;

  filter: none;
  opacity: 1;
}
/* ── Donate bar ── */
.donate-bar {
  background: linear-gradient(135deg, var(--orange), #c96b2a);
  padding: 36px 32px;
  text-align: center;
}
.donate-bar h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 10px; }
.donate-bar p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 22px; max-width: 480px; margin-left: auto; margin-right: auto; }
.donate-link {
  display: inline-block;
  background: #fff; color: var(--orange);
  padding: 14px 36px; border-radius: 30px;
  font-size: 14px; font-weight: 900;
  transition: all 0.2s;
}
.donate-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── Contact ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--orange-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ci h4 {
  font-size: 11px; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.ci p { font-size: 13px; color: #555; line-height: 1.6; }
.ci a { color: var(--navy); font-weight: 700; }
.ci a:hover { color: var(--orange); }

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--navy); margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e8e0d0;
  border-radius: var(--radius-sm);
  font-size: 13px; color: #333;
  background: var(--cream);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--orange);
}
.fg textarea { height: 100px; resize: vertical; }
.form-submit {
  background: var(--orange); color: #fff;
  border: none; padding: 14px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  font-family: 'Poppins', sans-serif; width: 100%;
  letter-spacing: 0.3px; transition: all 0.2s;
}
.form-submit:hover { background: #c96b2a; transform: translateY(-1px); }
.form-success {
  display: none; background: #e8f8f0; border: 1.5px solid #4caf82;
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 13px; color: #2a7a52; font-weight: 700; margin-top: 12px;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px; color: #fff; margin-bottom: 12px;
}
.page-hero p { font-size: 15px; color: #a8c0d8; max-width: 520px; margin: 0 auto; }
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-bottom: 14px; display: flex; gap: 6px; justify-content: center; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange); }

/* ── Map embed ── */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }

/* ── Footer ── */
footer {
  background: var(--navy-dk);
  padding: 48px 32px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.fl-brand .name { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.fl-brand .sub { font-size: 9px; color: var(--orange); font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
.fl-brand p { font-size: 12px; color: #5a7aaa; margin-top: 12px; line-height: 1.75; }
.fl-social { display: flex; gap: 10px; margin-top: 16px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 800;
  transition: all 0.2s;
}
.fsoc:hover { background: #1877f2; transform: scale(1.1); }
.fl h4 {
  font-size: 11px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.fl a {
  display: block; font-size: 12px; color: #5a7aaa;
  margin-bottom: 7px; transition: color 0.2s;
}
.fl a:hover { color: #fff; }
.fl-contact p {
  font-size: 12px; color: #5a7aaa;
  margin-bottom: 6px; display: flex; gap: 8px; line-height: 1.5;
}
.footer-divider {
  border: none; border-top: 0.5px solid rgba(255,255,255,0.07);
  max-width: 900px; margin: 0 auto 18px;
}
.footer-bottom {
  text-align: center; font-size: 11px; color: #3a5a7a;
  max-width: 900px; margin: 0 auto;
}

/* ── Page content blocks ── */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--navy);
  margin-bottom: 14px; margin-top: 32px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.content-block ul { padding-left: 20px; margin-bottom: 14px; }
.content-block li { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 6px; }

/* ── Info cards ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 28px auto 0;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  text-align: center;
}
.info-card .icon { font-size: 30px; margin-bottom: 10px; }
.info-card h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.info-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── PDF resource cards ── */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
.pdf-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1.5px solid var(--border);
  display: flex; gap: 16px; align-items: center;
  transition: all 0.2s; cursor: pointer;
}
.pdf-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(224,123,57,0.12); }
.pdf-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #fff0e4;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.pdf-card h3 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pdf-card p { font-size: 11px; color: var(--muted); }
.pdf-card .dl { font-size: 11px; color: var(--orange); font-weight: 700; margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .topbar { padding: 7px 16px; gap: 12px; }
  nav { padding: 0 16px; flex-wrap: wrap; }
  .nav-items { display: none; width: 100%; flex-direction: column; padding-bottom: 10px; }
  .nav-items.open { display: flex; }
  .nav-item > a { padding: 12px 0; border-bottom: 0.5px solid var(--border); }
  .dropdown { position: static; box-shadow: none; border-radius: 0; border-top: none; padding-left: 16px; }
  .hamburger { display: flex; }
  .nav-lang { padding: 10px 0; }

  .hero-content h1 { font-size: 30px; }
  .section { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .welcome { padding: 24px 16px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero { padding: 40px 16px; }
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 24px;

  border-radius: 18px;
  padding: 10px;

  background: rgba(255,255,255,0.04);
}

.fsoc {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── CHANGE COLOR OF FB LOGO ── */

.fsoc i {
  font-size: 26px;
  color: white;
}

.cd.event-windsor {
  background: var(--navy);
  color: #fff;
}

.cd.event-saskatoon {
  background: var(--orange);
  color: #fff;
}

.cd.event-windsor:hover {
  background: var(--navy-dk);
}

.cd.event-saskatoon:hover {
  background: #c96b2a;
}

.cd.event-windsor {
  background: var(--navy);
  color: #fff;
}

.cd.event-saskatoon {
  background: var(--orange);
  color: #fff;
}

.cd.event-mixed {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 50%, var(--orange) 50%, var(--orange) 100%);
  color: #fff;
}

.cd.event-windsor:hover {
  background: var(--navy-dk);
}

.cd.event-saskatoon:hover {
  background: #c96b2a;
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.flyer-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.flyer-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.flyer-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.flyer-grid img:hover {
  transform: scale(1.02);
}

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

.service-inner ul {
  padding-left: 28px;
  margin-bottom: 14px;
}

.service-inner li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}

.welcome p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.pbox {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  width: 180px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pbox img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}


.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
}

.partner-logo {
  max-width: 220px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}