/* ============================================================
   St Dominic Foundation — Static Site Stylesheet
   Original design by stdominicfoundation.org (Elementor/WP)
   Reconstructed as clean HTML/CSS for Vercel/GitHub hosting
   ============================================================ */

/* Google Fonts loaded via <link> tags in HTML for better performance */

/* ── CSS Variables ── */
:root {
  --primary:        #1aabe0;
  --primary-dark:   #0d8ab5;
  --navy:           #0c1523;
  --navy-mid:       #0d2137;
  --text:           #333333;
  --text-light:     #555555;
  --mint:           #eaf6e3;
  --salmon:         #e8896c;
  --green-accent:   #667462;
  --gradient-blue:  radial-gradient(at center center, #002446 9%, #36A3D1 100%);
  --white:          #ffffff;
  --border:         #e5e5e5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.centered { text-align: center; }

.handwritten { font-family: 'Schoolbell', cursive !important; }

.teal   { color: var(--primary); }
.salmon { color: var(--salmon); }

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}
.section-label--light { color: rgba(255,255,255,0.55); }
.section-label--spaced { letter-spacing: 6px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Page Hero Banner (inner pages) ── */
.page-banner {
  background: var(--gradient-blue);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.page-banner h1 {
  font-family: 'Schoolbell', cursive;
  font-size: 52px;
  margin-bottom: 10px;
}
.page-banner p {
  font-size: 16px;
  opacity: 0.8;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.7;
}
.breadcrumb a:hover { opacity: 1; color: var(--primary); }


/* ════════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════ */
.site-header {
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.logo img {
  height: 66px;
  width: auto;
}

/* Nav list */
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > ul > li > a {
  display: block;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Schoolbell', cursive;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav > ul > li > a .arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s;
}
.main-nav > ul > li.active > a,
.main-nav > ul > li > a:hover {
  color: var(--primary);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1000;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: 'Schoolbell', cursive;
  font-size: 14px;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--mint);
  color: var(--primary);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero-section {
  padding: 70px 24px 80px;
  background: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-text h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
  font-family: 'Schoolbell', cursive;
}
.hero-text > p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}


/* ════════════════════════════════════════
   MISSION / VISION — BLUE GRADIENT
════════════════════════════════════════ */
.mission-section {
  background: var(--gradient-blue);
  padding: 80px 24px;
}
.mission-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mission-box {
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}
.mission-box h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 46px;
  margin-bottom: 20px;
}
.mission-box p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0.92;
}


/* ════════════════════════════════════════
   ABOUT / VISION TEXT SECTION
════════════════════════════════════════ */
.about-section {
  padding: 80px 24px;
  background: var(--white);
}
.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}
.signature-img {
  margin-top: 24px;
  max-width: 190px;
  height: auto;
}
.about-right p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.95;
  margin-bottom: 22px;
}
.drop-cap::first-letter {
  font-size: 62px;
  font-weight: 800;
  color: var(--primary);
  float: left;
  margin: -4px 10px 0 0;
  line-height: 1;
  font-family: 'Ubuntu', sans-serif;
}


/* ════════════════════════════════════════
   SDG SECTION
════════════════════════════════════════ */
.sdg-section {
  background: var(--mint);
  padding: 60px 24px;
}
.sdg-section > .container > h2 {
  text-align: center;
  font-family: 'Schoolbell', cursive;
  font-size: 38px;
  color: var(--text);
  margin-bottom: 40px;
}
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(0,0,0,0.07);
}
.sdg-item {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.07);
  background: var(--mint);
}
.sdg-item:last-child { border-right: none; }
.sdg-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
}
.sdg-icon svg { width: 100%; height: 100%; }
.sdg-item p {
  font-family: 'Schoolbell', cursive;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}


/* ════════════════════════════════════════
   HELP IS OUR GOAL
════════════════════════════════════════ */
.help-section {
  padding: 80px 24px;
  background: var(--white);
}
.help-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.help-card {
  background: var(--mint);
  padding: 50px 44px;
  border-radius: 4px;
}
.help-card h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.help-card h2 span { display: block; font-size: 42px; }
.help-card p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 28px;
}
.help-text { padding-top: 20px; }
.help-text .section-label { letter-spacing: 4px; margin-bottom: 22px; }
.help-text p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.95;
}


/* ════════════════════════════════════════
   CHANGE COMMUNITIES — BLUE GRADIENT
════════════════════════════════════════ */
.change-section {
  background: var(--gradient-blue);
  padding: 80px 24px;
  text-align: center;
}
.change-inner {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}
.change-inner h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.change-inner h3 {
  font-family: 'Schoolbell', cursive;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 14px;
}
.change-inner h4 {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 36px;
}


/* ════════════════════════════════════════
   LATEST CAUSES
════════════════════════════════════════ */
.causes-section {
  padding: 80px 24px;
  background: var(--white);
}
.causes-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.causes-section h2 .handwritten {
  font-family: 'Schoolbell', cursive;
  font-weight: 400;
  font-size: 40px;
}
.causes-section .section-label { margin-bottom: 6px; }
.causes-section .btn { margin-top: 28px; }


/* ════════════════════════════════════════
   WELCOME / CTA BANNER — DARK NAVY
════════════════════════════════════════ */
.welcome-section {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}
.welcome-section h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 48px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 18px;
  line-height: 1.3;
}
.welcome-section h3 {
  font-family: 'Schoolbell', cursive;
  font-size: 22px;
  color: var(--salmon);
  font-weight: 400;
  margin-bottom: 34px;
}
.welcome-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ════════════════════════════════════════
   EDUCATION FOR CHANGE
════════════════════════════════════════ */
.education-section {
  padding: 80px 24px;
  background: var(--white);
}
.education-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}
.education-section h2 .handwritten {
  font-family: 'Schoolbell', cursive;
  font-weight: 400;
  font-size: 40px;
}
.edu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
}
.edu-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.edu-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 55, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.edu-img-overlay p {
  color: var(--white);
  font-family: 'Schoolbell', cursive;
  font-size: 22px;
}


/* ════════════════════════════════════════
   UPCOMING EVENTS
════════════════════════════════════════ */
.events-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.events-text {
  background: linear-gradient(145deg, #0c1a30 0%, #163352 100%);
  padding: 70px 60px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.events-text h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}
.events-image {
  overflow: hidden;
}
.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════════
   TO EMPOWER
════════════════════════════════════════ */
.empower-section { background: var(--mint); }
.empower-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.empower-image { overflow: hidden; }
.empower-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.empower-text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.empower-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}
.empower-text p {
  font-family: 'Schoolbell', cursive;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.95;
  font-style: italic;
}


/* ════════════════════════════════════════
   NEWS & UPDATES
════════════════════════════════════════ */
.news-section {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}
.news-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.news-section h2 .handwritten {
  font-family: 'Schoolbell', cursive;
  font-weight: 400;
  font-size: 40px;
}
.news-section .btn { margin-top: 28px; }


/* ════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════ */
.newsletter-section {
  background: var(--mint);
  padding: 60px 24px;
}
.newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.newsletter-text h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1.3;
}
.newsletter-text h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-light);
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Ubuntu', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--primary); }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 58px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact a { color: var(--text-light); transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-contact .sep { color: #ccc; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  transition: opacity 0.25s, transform 0.2s;
  text-decoration: none;
}
.social-link:hover { opacity: 0.82; transform: translateY(-2px); }
.social-link.fb  { background: #1877f2; }
.social-link.ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.tw  { background: #1da1f2; }

.footer-bar {
  background: var(--primary);
  padding: 9px 24px;
  text-align: center;
}
.footer-bar p { color: var(--white); font-size: 13px; }


/* ════════════════════════════════════════
   INNER PAGE CONTENT
════════════════════════════════════════ */
.inner-content { padding: 80px 24px; }
.inner-content h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 40px;
  color: var(--text);
  margin-bottom: 20px;
}
.inner-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 800px;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 16px;
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Donate page */
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.amount-btn {
  padding: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary);
  background: var(--mint);
  color: var(--primary);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.card-img {
  height: 200px;
  background: var(--mint);
  background-size: cover;
  background-position: center;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--mint);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--primary);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* Progress bars (causes) */
.cause-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cause-card .card-img { height: 220px; }
.progress-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin: 12px 0 8px;
}
.progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}
.cause-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.cause-meta strong { color: var(--primary); }

/* Volunteer */
.volunteer-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.perk {
  background: var(--mint);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
}
.perk-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 14px;
}
.perk h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.perk p { font-size: 13px; color: var(--text-light); line-height: 1.7; }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner, .mission-inner, .about-inner,
  .help-inner, .contact-grid, .cards-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-image { order: -1; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
  .volunteer-perks { grid-template-columns: 1fr 1fr; }

  /* Nav collapse — hamburger at all tablet/mobile widths */
  .mobile-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 0;
    z-index: 998;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.06);
    display: none;
  }
  .dropdown.open { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.06); }
  .site-header { position: relative; }
}

@media (max-width: 768px) {
  .events-section, .empower-inner { grid-template-columns: 1fr; }
  .events-image { display: none; }
  .empower-image { height: 280px; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 24px; }
  .welcome-section h2 { font-size: 32px; }
  .page-banner h1 { font-size: 36px; }
  .events-text { padding: 50px 30px; }
  .empower-text { padding: 50px 30px; }
  .edu-images { grid-template-columns: 1fr; height: auto; }
  .edu-img { height: 220px; }
  .donate-amounts { grid-template-columns: 1fr 1fr; }
  .volunteer-perks { grid-template-columns: 1fr; }
}
