/* ============================================
   CRW — Christ To The Rural World
   Main Stylesheet
   ============================================ */

:root {
  --navy: #0B1F3A;
  --navy-light: #112947;
  --navy-mid: #1a3555;
   --golden: #C9A84C;  
  --gold: #9b4b9c;
	
  --gold-light: #E4C26A;
  --gold-pale: #F5E6C0;
  --white: #ffffff;
  --off-white: #F8F6F1;
  --text-dark: #1a1a2e;
  --text-body: #3d4b5c;
  --text-muted: #7a8898;
  --border: rgba(201, 168, 76, 0.2);
  --shadow-sm: 0 2px 12px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.14);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ===== PAGE LOADING OVERLAY ===== */
.page-loader {
  position: fixed;
  inset: 0;                          /* top/right/bottom/left: 0 */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);           /* solid navy backdrop */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.page-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.page-loader img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(11,31,58,0.4);
  height: 64px;
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-logo-img-footer {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-donate {
  margin-left: 8px;
  padding: 10px 22px !important;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-donate:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== UTILITY ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.highlight-gold {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--golden);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(201,168,76,0.06);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--navy);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  z-index: 0;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 31, 58, 0.9) 0%,
    rgba(11, 31, 58, 0.75) 50%,
    rgba(11, 31, 58, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 8% 100px;
  max-width: 720px;
  animation: fadeInUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--navy);
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.25);
  animation: fadeInUp 1s ease 0.1s both;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(11,31,58,0.25);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 1s ease 0.3s both;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ===== VOLUNTEER SECTION ===== */
.volunteer-section {
  padding: 100px 5%;
  background: var(--off-white);
  position: relative;
}

.volunteer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
}

.volunteer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.volunteer-info {
  padding-top: 20px;
}

.volunteer-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
}

.volunteer-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vol-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vol-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vol-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.vol-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FORM CARD */
.volunteer-form-wrap {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.volunteer-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.form-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.volunteer-form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.required {
  color: #e53e3e;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  font-size: 0.78rem;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #f9fafc;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #a0aec0;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}

.input-wrap input.error,
.input-wrap select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.select-wrap select {
  cursor: pointer;
  padding-right: 44px;
}

.select-arrow {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.textarea-wrap textarea {
  padding: 12px 14px 12px 44px;
  resize: vertical;
  min-height: 80px;
  align-self: flex-start;
}

.textarea-wrap .input-icon {
  top: 14px;
  align-self: flex-start;
}

.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  font-weight: 500;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11,31,58,0.3);
  color: var(--navy);
}

.btn-submit .btn-text,
.btn-submit .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-submit:active {
  transform: translateY(0);
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 32px;
  gap: 16px;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.form-success p {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 320px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 5%;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  align-items: start;
}

.about-image-wrap {
  position: relative;
  align-self: flex-start;
  align-self: start;
}

.about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 28px;
}

.about-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(11,31,58,0.03));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
}

.about-quote p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-quote cite {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
}

.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
  position: relative;
  padding: 100px 5%;
  background: url('hero_bg.png') center/cover no-repeat fixed;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.96), rgba(11,31,58,0.88));
}

.impact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.impact-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 40px 24px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  cursor: default;
}

.impact-card:hover {
  transform: translateY(-8px);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
}

.impact-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.impact-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: rgba(201,168,76,0.3);
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .testimonial-quote-mark {
  color: rgba(255,255,255,0.9);
}

.testimonial-card.featured .author-info strong {
  color: var(--white);
}

.testimonial-card.featured .author-info span {
  color: rgba(255,255,255,0.5);
}

.testimonial-quote-mark {
  font-size: 4rem;
  font-family: 'Lora', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.7;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 100px 5%;
  background: var(--white);
}

.events-container {
  max-width: 1000px;
  margin: 0 auto;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.event-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 18px;
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(201,168,76,0.35);
}

.event-card.upcoming {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(11,31,58,0.04));
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
}

.event-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.upcoming-tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.past-tag {
  background: rgba(120,130,150,0.12);
  color: var(--text-muted);
  border: 1px solid rgba(120,130,150,0.2);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  background: var(--navy);
  border-radius: 12px;
  padding: 10px 8px;
  color: var(--white);
}

.event-date-block.past-date {
  background: #e2e8f0;
  color: var(--text-muted);
}

.event-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.event-day {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.event-year {
  font-size: 0.65rem;
  opacity: 0.7;
}

.event-info {
  flex: 1;
}

.event-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.event-meta svg {
  flex-shrink: 0;
}

.event-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: 8px;
}

.btn-event {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.btn-event:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== DONATE SECTION ===== */
.donate-section {
  position: relative;
  padding: 100px 5%;
  background: url('outreach.png') center/cover no-repeat;
  text-align: center;
}

.donate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.93), rgba(26,53,85,0.88));
}

.donate-container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.donate-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 24px;
  animation: pulse 3s ease infinite;
}

.donate-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.donate-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
}

.donate-amounts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.amount-btn {
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-donate-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-donate-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding-top: 80px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo em {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  font-style: normal;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .volunteer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-img-badge {
    right: 20px;
    bottom: -10px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-donate {
    margin-left: 0 !important;
  }

  .hero-content {
    padding: 100px 5% 80px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .volunteer-form {
    padding: 20px;
  }

  .form-header {
    padding: 20px 20px 16px;
  }

  .event-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 20px;
  }

  .event-card .btn-event {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .event-status {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .impact-card {
    padding: 28px 16px;
  }

  .donate-amounts {
    gap: 8px;
  }

  .amount-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   MULTI-PAGE STYLES
   ============================================================ */

/* ===== FLOATING VOLUNTEER BUTTON ===== */
.float-vol-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  background: linear-gradient(180deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  border-radius: 16px 0 0 16px;
  text-decoration: none;
  box-shadow: -4px 0 30px rgba(11,31,58,0.3);
  border: 1px solid rgba(201,168,76,0.25);
  border-right: none;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
  writing-mode: vertical-rl;
  cursor: pointer;
}

.float-vol-btn:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 24px 18px;
  box-shadow: -6px 0 40px rgba(201,168,76,0.4);
}

.float-vol-btn svg {
  flex-shrink: 0;
  writing-mode: horizontal-tb;
}

.float-vol-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 320px;
  background: url('hero_bg.png') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  margin-top: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.75) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 8%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--gold);
}

.page-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.page-breadcrumb svg {
  color: rgba(255,255,255,0.3);
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
  padding: 80px 0;
}

.bg-white { background: var(--white); }
.bg-offwhite { background: var(--off-white); }

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-header {
  margin-bottom: 48px;
}

/* ===== HOMEPAGE INTRO SECTION ===== */
.home-intro-section {
  padding: 80px 5% 0;
  background: var(--white);
}

.home-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.home-intro-left {
  padding-top: 12px;
}

.home-intro-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.home-stats-row {
  display: flex;
  gap: 28px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.home-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.home-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-intro-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== BIG VOLUNTEER CARD (homepage right float) ===== */
.home-vol-card {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}

.vol-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.vol-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.vol-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.vol-card-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.1;
}

.vol-card-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vol-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.vol-card-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.dept-chip {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.vol-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.vol-card-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.vol-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.vol-perk svg {
  color: var(--gold);
  flex-shrink: 0;
}

.vol-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 12px;
}

.vol-card-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

.vol-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.vol-card-note svg {
  flex-shrink: 0;
}

/* ===== EVENT STRIP ===== */
.event-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 40px 5%;
}

.event-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.event-strip-left .strip-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.event-strip-left h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.event-strip-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.event-strip-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== HOME TESTIMONIALS ===== */
.home-testimonials {
  padding-top: 80px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  position: relative;
  padding: 80px 5%;
  background: url('hero_bg.png') center/cover no-repeat;
  text-align: center;
}

.cta-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.94), rgba(26,53,85,0.9));
}

.cta-strip-container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-strip-container h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip-container p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== MISSION / VISION / VALUES ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.mvv-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.mvv-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== LEADERSHIP ===== */
.leadership-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  background: var(--off-white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(201,168,76,0.15);
  align-items: flex-start;
  margin-top: 48px;
}

.leader-avatar-wrap {
  flex-shrink: 0;
}

.leader-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  overflow: hidden;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.leader-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-role {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.leader-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border-radius: 0 10px 10px 0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ===== LEADERSHIP PAGE GRID ===== */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.leader-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,0.18);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.4);
}

.leader-card .leader-avatar {
  width: 170px;
  height: 170px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.leader-card-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leader-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.leader-card .leader-role {
  margin-bottom: 16px;
}

.leader-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== WORK/IMPACT GRID ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.work-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.work-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.work-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.work-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== IMPACT PAGE SECTION ===== */
.impact-page-section {
  padding: 100px 5% !important;
}

/* ===== FEATURED EVENT ===== */
.featured-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 48px;
}

.fe-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  border-radius: 18px;
  padding: 20px 18px;
  color: var(--white);
  min-width: 90px;
  text-align: center;
}

.fe-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.fe-day {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin: 4px 0;
}

.fe-enddate {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.fe-year {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.fe-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 12px;
}

.fe-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fe-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fe-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fe-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fe-feature-chip {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(11,31,58,0.06);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
  border: 1px solid rgba(11,31,58,0.1);
}

.fe-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.fe-donate-btn {
  text-align: center;
  display: block;
}

.fe-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  justify-content: center;
}

/* ===== EVENTS TIMELINE ===== */
.events-intro {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: start;
}

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 12px;
  gap: 2px;
}

.tl-month {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tl-day {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.tl-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.timeline-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.tl-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-card p:last-child {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== VOLUNTEER PAGE SECTION ===== */
.volunteer-page-section {
  padding: 80px 0;
  background: var(--off-white);
}

.volunteer-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.vol-page-info {
  padding-top: 12px;
}

.vol-event-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(201,168,76,0.2);
}

.vel-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.vel-date span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.vel-date strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

.vel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vel-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.vel-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== DONATE PAGE ===== */
.donate-page-section {
  padding: 100px 5% !important;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  padding-top: 12px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ci-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.ci-text a:hover {
  color: var(--gold);
}

.contact-quick-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

/* ===== RESPONSIVE — MULTI-PAGE ===== */
@media (max-width: 1024px) {
  .home-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-vol-card {
    position: relative;
    top: 0;
  }

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

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

  .volunteer-page-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
  }

  .featured-event {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding: 32px;
  }

  .fe-action {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    min-width: unset;
  }

  .programme-seminars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .float-vol-btn {
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    border-radius: 50px;
    flex-direction: row;
    padding: 14px 20px;
    writing-mode: horizontal-tb;
    border: none;
    box-shadow: 0 6px 30px rgba(11,31,58,0.3);
  }

  .float-vol-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.75rem;
  }

  .page-hero {
    height: 260px;
    padding-bottom: 36px;
  }

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

  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .featured-event {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fe-date {
    width: fit-content;
    margin: 0 auto;
  }

  .fe-meta {
    justify-content: center;
  }

  .fe-features {
    justify-content: center;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .event-strip-container {
    flex-direction: column;
    text-align: center;
  }

  .event-strip-right {
    justify-content: center;
  }

  .home-stats-row {
    gap: 20px;
  }

  .vol-card-inner {
    padding: 24px 20px;
  }

  .programme-table thead {
    display: none;
  }

  .programme-table tbody td {
    display: block;
    padding: 10px 16px;
  }

  .programme-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    color: var(--navy);
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .programme-table tbody tr {
    border-bottom: 2px solid rgba(11, 31, 58, 0.1);
  }
}

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-date {
    align-items: flex-start;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding-top: 0;
  }

  .home-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .programme-seminars-grid {
    grid-template-columns: 1fr;
  }

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

/* Save the Children Ministry Card with Transparent Background Image */
.work-card-bg-children {
  position: relative;
  background-image: url('682363881_1275965917954993_2595667860546563745_n.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white) !important;
}

.work-card-bg-children .work-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.7));
  transition: background var(--transition);
  z-index: 1;
}

.work-card-bg-children .work-card-content {
  position: relative;
  z-index: 2;
}

.work-card-bg-children h3 {
  color: var(--white) !important;
}

.work-card-bg-children p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Gospel Crusades Card with Background Image */
.work-card-bg-crusades {
  position: relative;
  background-image: url('crusade.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white) !important;
}

.work-card-bg-crusades .work-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.7));
  z-index: 1;
}

.work-card-bg-crusades .work-card-content {
  position: relative;
  z-index: 2;
}

.work-card-bg-crusades h3 {
  color: var(--white) !important;
}

.work-card-bg-crusades p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Medical Outreach Card with Background Image */
.work-card-bg-medical {
  position: relative;
  background-image: url('medics.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white) !important;
}

.work-card-bg-medical .work-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.7));
  z-index: 1;
}

.work-card-bg-medical .work-card-content {
  position: relative;
  z-index: 2;
}

.work-card-bg-medical h3 {
  color: var(--white) !important;
}

.work-card-bg-medical p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Aid Distribution Card with Background Image */
.work-card-bg-aid {
  position: relative;
  background-image: url('mattress.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white) !important;
}

.work-card-bg-aid .work-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.7));
  z-index: 1;
}

.work-card-bg-aid .work-card-content {
  position: relative;
  z-index: 2;
}

.work-card-bg-aid h3 {
  color: var(--white) !important;
}

.work-card-bg-aid p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== PROGRAMME TABLE ===== */
.programme-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.programme-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.programme-table thead {
  background: var(--navy);
  color: var(--white);
}

.programme-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.programme-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  vertical-align: top;
  color: var(--text-body);
  line-height: 1.5;
}

.programme-table tbody tr:last-child td {
  border-bottom: none;
}

.programme-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.05);
}

.programme-day-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.programme-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tag-crusade {
  background: rgba(201, 168, 76, 0.15);
  color: #8b6914;
}

.tag-seminars {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.tag-medical {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.tag-disability {
  background: rgba(147, 51, 234, 0.1);
  color: #7c3aed;
}

.tag-surgery {
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
}

/* ===== PROGRAMME DETAILS ===== */
.programme-detail {
  max-width: 820px;
  margin: 0 auto;
}

.programme-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.programme-detail-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.programme-detail-subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.programme-detail-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.programme-detail-body p {
  margin-bottom: 16px;
}

.programme-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.programme-callout {
  margin-top: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(11, 31, 58, 0.04));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.programme-callout h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.programme-callout h4 svg {
  color: var(--gold);
  flex-shrink: 0;
}

.programme-callout p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== PROGRAMME LISTS ===== */
.programme-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.programme-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.programme-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.programme-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px 16px;
}

.programme-list-ordered {
  padding-left: 20px;
  margin: 16px 0;
}

.programme-list-ordered li {
  margin-bottom: 8px;
  line-height: 1.7;
  padding-left: 4px;
}

.programme-list-ordered li::marker {
  color: var(--navy);
  font-weight: 700;
}

/* ===== PROGRAMME INTRO & SEMINARS ===== */
.programme-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.programme-seminars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.programme-seminar-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.programme-seminar-card:hover {
  box-shadow: var(--shadow-lg);
}

.programme-seminar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(11, 31, 58, 0.08));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.programme-seminar-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.programme-seminar-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===== EVENT PHOTO GALLERY (impact page) ===== */
.gallery-event-block {
  margin-bottom: 48px;
}

.gallery-event-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.gallery-event-date {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #edf2f7;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(11,31,58,0.85), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.page-loader.active {
  opacity: 1;
  pointer-events: auto;
}

.page-loader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide body content when loader is active (prevents white flash) */
body.page-loading > *:not(.page-loader) {
  visibility: hidden;
}

body.page-loading .page-loader {
  opacity: 1;
  pointer-events: auto;
}

body.page-loading .page-loader img {
  visibility: visible;
}
