/* At the very top of css/style.css */
@import url('registration.css');
/* ============================================================
   PAXUNITY — Main Stylesheet /
   ============================================================ */

@font-face {
  font-family: 'UrduNastaliq';
  src: url('../fonts/Urdu_Emad_Nastaliq.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --gold: #f5c400;
  --gold-light: #ffe066;
  --gold-dark: #b8860b;
  --green: #7ed98b;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #202020;
  --text: #f5f0e8;
  --muted: #a09880;
  --border: rgba(245,196,0,0.15);
  --radius: 1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; opacity: 0.75; transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 0.5rem 1.2rem !important; border-radius: 999px; font-weight: 700 !important; font-size: 0.8rem !important; opacity: 1 !important; white-space: nowrap; text-decoration: none; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); text-decoration: none; }

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 6px; 
  background: none; 
  border: none; 
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 300;
  touch-action: manipulation;
}
.hamburger span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all 0.3s; 
  pointer-events: none;
}

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 249; background: rgba(13,13,13,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 1rem 0; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; padding: 0.9rem 2rem; font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta { color: var(--gold); }

/* SECTIONS */
section { padding: 5rem 1.5rem; }
#about { padding-top: 5rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.light-section { background: #fdf8f0 !important; }
.white-section { background: #ffffff !important; }
.dark-warm-section { background: #1a1208; padding: 5rem 1.5rem; }
.gold-banner { background: var(--gold); padding: 4rem 1.5rem; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 0.75rem; margin-bottom: 0.8rem; }
.gold-label { color: var(--gold-dark) !important; border-color: var(--gold-dark) !important; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.18; margin-bottom: 1.5rem; color: var(--text); }
.dark-title { color: #fdfdfd !important; }
.accent { color: var(--gold); }
.gold-accent { color: var(--gold-dark) !important; }
.section-desc { color: #fdf8f0; max-width: 620px; margin: 0 auto; line-height: 1.8; }

/* HERO */
#home {
  min-height: auto;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 3rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background-image: url('../images/sunset.png'); background-size: cover; background-position: center; filter: brightness(0.45) saturate(0.85); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; width: 100%; }
.hero-logo { width: min(140px, 38vw); height: auto; flex-shrink: 0; }
.hero-badge { display: inline-block; border: 1px solid rgba(245,196,0,0.45); color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.38rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 1.1rem; animation: fadeUp 0.7s 0.2s ease both;
}
.hero-slogan { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 600; color: rgba(245,240,232,0.9); margin-bottom: 0.5rem; animation: fadeUp 0.7s 0.3s ease both; }
.hero-sub { font-size: 0.95rem; color: rgba(245,240,232,0.6); margin-bottom: 2rem; animation: fadeUp 0.7s 0.35s ease both; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.4s ease both; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--dark); padding: 0.85rem 1.8rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,0.3); }
.btn-outline { border: 1.5px solid rgba(245,240,232,0.5); color: var(--text); padding: 0.85rem 1.8rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold { background: var(--gold-dark); color: #fff; padding: 0.85rem 1.8rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-dark { background: #1a1a1a; color: #fff; padding: 0.85rem 2rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; display: inline-block; border: 2px solid #1a1a1a; }
.btn-dark:hover { background: transparent; color: #1a1a1a; transform: translateY(-2px); }

/* ABOUT PILLARS */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-pillar-item {
  background: #111;
  border: 1px solid rgba(245,196,0,0.35);
  padding: 1.4rem 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.25s ease;
  color: #fff;
}

.about-pillar-item:hover {
  background: #1c1c1c;
  transform: translateY(-3px);
  border-color: rgba(245,196,0,0.55);
}

.about-pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.about-pillar-item span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

/* ABOUT GRID */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px rgba(184,134,11,0.3); border-radius: var(--radius); pointer-events: none; }
.about-text p { line-height: 1.85; margin-bottom: 1.1rem; font-size: 1rem; }

/* PROGRAM CARDS */
.program-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.program-card { background: #111; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(245,196,0,0.35); transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.program-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.program-card-body { padding: 1.2rem; }
.program-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #d4af37; margin-bottom: 0.5rem; }
.program-card-body p { font-size: 0.85rem; color: #f5f0e8; line-height: 1.6; margin-bottom: 1rem; }
.program-btn { display: inline-block; background: #d4af37; color: #111; padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.program-btn:hover { background: #f5c400; }

/* JOIN + EVENTS */
.join-events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.events-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 0.5rem; }
.event-item { display: flex; align-items: flex-start; gap: 1rem; }
.event-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.event-item strong { display: block; color: var(--text); font-size: 0.95rem; }
.event-date { font-size: 0.82rem; color: var(--muted); }
.impact-row { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.impact-stat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; background: rgba(245,196,0,0.08); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem 1.2rem; flex: 1; min-width: 90px; }
.impact-icon { font-size: 1.5rem; }
.impact-num { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.impact-label { font-size: 0.72rem; color: var(--muted); text-align: center; text-transform: uppercase; letter-spacing: 0.07em; }

/* VOLUNTEER */
#volunteer { background: var(--dark2); }
.volunteer-intro { max-width: 640px; margin-bottom: 2.5rem; color: rgba(245,240,232,0.75); font-size: 1rem; line-height: 1.8; }

/* FORMS */
.form-card { background: var(--dark3); border: 1px solid var(--border); border-radius: 1.2rem; padding: clamp(1.5rem, 4vw, 2.8rem); max-width: 780px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.07em; text-transform: uppercase; }
.field input, .field select, .field textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,196,0,0.18); border-radius: 0.55rem; padding: 0.72rem 0.9rem; color: var(--text); font-family: 'Nunito', sans-serif; font-size: 0.92rem; transition: border-color 0.2s; outline: none; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(245,196,0,0.04); }
.field select option { background: var(--dark3); }
.field textarea { resize: vertical; min-height: 90px; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.2rem; }
.checkbox-item { display: flex; align-items: flex-start; gap: 0.55rem; }
.checkbox-item input[type="checkbox"] { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.checkbox-item span { font-size: 0.88rem; color: rgba(245,240,232,0.78); line-height: 1.5; }
.form-note { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 1.4rem; border-top: 1px solid var(--border); padding-top: 1.1rem; line-height: 1.6; }
.submit-btn { background: var(--gold); color: var(--dark); border: none; cursor: pointer; padding: 0.88rem 2.2rem; border-radius: 999px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; margin-top: 1.6rem; transition: all 0.2s; }
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.back-btn { background: transparent; border: 1.5px solid rgba(245,240,232,0.3); color: var(--text); cursor: pointer; padding: 0.85rem 1.5rem; border-radius: 999px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.back-btn:hover { border-color: var(--gold); color: var(--gold); }
.form-success { display: none; background: rgba(126,217,139,0.1); border: 1px solid #7ed98b; border-radius: 0.8rem; padding: 1.5rem; text-align: center; color: #7ed98b; font-weight: 600; margin-top: 1.5rem; line-height: 1.7; }
.show-section-btn { background: var(--gold); color: var(--dark); border: none; cursor: pointer; padding: 0.85rem 2rem; border-radius: 999px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 2rem; transition: all 0.2s; display: inline-block; }
.show-section-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FEEDBACK */
.feedback-notice { background: rgba(245,196,0,0.07); border: 1px solid rgba(245,196,0,0.22); border-radius: 0.75rem; padding: 0.9rem 1.3rem; font-size: 0.86rem; color: var(--muted); margin-bottom: 2rem; max-width: 640px; line-height: 1.6; }
.feedback-notice strong { color: var(--gold); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: rgba(245,196,0,0.08); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-detail strong { display: block; font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-detail span, .contact-detail a { color: rgba(245,240,232,0.72); font-size: 0.92rem; text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }
.social-links { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.8rem; }
.social-row-link {
  display: inline-flex;      /* prevents full-width stretching */
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  width: auto;               /* ensures tight click area */
}
.social-row-link:hover { opacity: 0.75; }

/* POLICY PAGES */
.policy-page { padding: 7rem 1.5rem 5rem; max-width: 820px; margin: 0 auto; }
.policy-page h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--gold); margin-bottom: 0.5rem; }
.policy-page .policy-date { color: var(--muted); font-size: 0.82rem; margin-bottom: 2.5rem; }
.policy-page h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin: 2.2rem 0 0.7rem; }
.policy-page p { color: rgba(245,240,232,0.78); line-height: 1.85; margin-bottom: 1rem; font-size: 0.97rem; }
.policy-page ul { color: rgba(245,240,232,0.75); padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-page ul li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 0.95rem; }
.policy-page a { color: var(--gold); }
.policy-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 700; margin-bottom: 2.5rem; }
.policy-back:hover { color: var(--gold-light); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .program-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  nav { padding: 0 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .join-events-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .support-cards { grid-template-columns: 1fr; }
  .sponsor-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .program-cards { grid-template-columns: 1fr; }
  .about-pillars { gap: 1rem; }
  .about-pillar-item { min-width: 120px; padding: 1rem; }
  section { padding: 4rem 1.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .hero-top-row { flex-direction: column; text-align: center; }
  .hero-welcome { text-align: center; }
}

/* ── WELCOME STRIP ── */
.welcome-strip {
  background: #0d0d0d;
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(245,196,0,0.15);
}
.welcome-langs {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto 28px;
  letter-spacing: 0.03em;
}
.welcome-logo {
  width: min(180px, 50vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
.welcome-tagline {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.welcome-tagline strong {
  color: #f5f0e8;
  font-size: 1rem;
}
.nav-emblem {
  height: 40px;
  width: auto;
  margin-right: 6px;
}

/* ── SUPPORT & SPONSOR ── */
#donate { background: var(--dark2); }
.support-top { max-width: 760px; margin-bottom: 2.5rem; }
.support-intro { color: rgba(245,240,232,0.75); font-size: 0.97rem; line-height: 1.85; margin-bottom: 0.5rem; }
.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.support-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; }
.support-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.support-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.3rem; }
.support-card-sub { font-size: 0.8rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.support-card-body { color: rgba(245,240,232,0.72); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.8rem; }
.support-list { list-style: none; padding: 0; margin-bottom: 1.2rem; }
.support-list li { color: rgba(245,240,232,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; padding-left: 0.5rem; }
.support-socials { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem; }
.support-social-btn { background: rgba(245,196,0,0.1); border: 1px solid var(--border); color: var(--gold); padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.support-social-btn:hover { background: var(--gold); color: var(--dark); }
.support-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.sponsor-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.sponsor-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: transform 0.3s, border-color 0.3s; }
.sponsor-card:hover { transform: translateY(-4px); }
.sponsor-gold { border-top: 3px solid #f5c400; }
.sponsor-silver { border-top: 3px solid #c0c0c0; }
.sponsor-bronze { border-top: 3px solid #cd7f32; }
.sponsor-tier-badge { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.8rem; }
.sponsor-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; }
#corporate, #support, #sponsor { scroll-margin-top: 80px; }

/* ============================================================
   PAXUNITY — UNIFIED COMPACT HORIZONTAL FOOTER & SUB-FOOTER
   ============================================================ */

/* Main master footer layout configurations */
.site-footer {
  background-color: #0d0d0d;
  color: var(--text, #ffffff);
  padding: 1.5rem 1.5rem 0px 1.5rem !important; /* Zero-gap base mapping */
  text-align: center;
  font-family: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Link alignment clusters (Explore and Legal rows) */
.footer-links-row, 
.footer-legal-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem !important;
  margin-bottom: 0.5rem !important;
}

.footer-links-row a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-links-row a.admin-link {
  color: rgba(245, 196, 0, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-legal-row a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-links-row a:hover,
.footer-legal-row a:hover {
  color: var(--gold, #f5c400);
  opacity: 1;
}

/* Pipeline visual link separators */
.footer-pipe {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  pointer-events: none;
}

/* Minimal divider line configurations */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1200px;
  margin: 0.5rem auto 0.5rem auto !important;
  opacity: 0.4;
}

/* Tight vertical text alignment configurations */
.footer-metadata-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem !important;
  margin-top: 0.5rem !important;
}

.footer-subtext {
  color: rgba(245, 196, 0, 0.6);
  font-size: 0.85rem;
  margin: 0 0 0.2rem 0 !important;
}

.footer-copy-row {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem;
  margin: 0 !important;
  opacity: 1 !important;
}

.footer-gold-quote {
  color: rgba(245, 196, 0, 0.5);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0.1rem 0 0.4rem 0 !important;
}

.footer-email-link {
  color: inherit;
  text-decoration: none;
}
.footer-email-link:hover {
  text-decoration: underline;
  color: var(--gold);
}

/* Mission text statement positioned at absolute bottom border */
.footer-mission-bottom {
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 750px;
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  margin: 0.25rem auto 0 auto !important;
  padding-bottom: 1.5rem !important;
  opacity: 1 !important;
}

/* Registration Sub-Footer layout styling */
.sub-footer {
  background-color: #121212;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(245, 196, 0, 0.15);
}

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

.sub-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sub-footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.sub-footer-links a {
  color: var(--text, #ffffff);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: color 0.2s;
}

.sub-footer-links a:hover {
  color: var(--gold, #f5c400);
  opacity: 1;
}

.sub-footer-pipe {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  pointer-events: none;
}

/* Tablet and desktop adaptive stacking overrides */
@media (max-width: 968px) {
  .footer-metadata-stack {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
/* ============================================================
   PAXUNITY — Program Sub-Pages Layout System
   ============================================================ */
.program-hero {
  min-height: 55vh; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-align: center; 
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #1a1208 0%, #0d0d0d 100%);
  position: relative; 
  overflow: hidden;
}
.program-hero::before {
  content: '🎭'; 
  font-size: 20rem; 
  position: absolute;
  opacity: 0.04; 
  right: -2rem; 
  top: 50%; 
  transform: translateY(-50%);
}
.program-hero-content { 
  position: relative; 
  z-index: 1; 
  max-width: 700px; 
}
.program-hero h1 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
  font-weight: 900; 
  margin-bottom: 1rem; 
}
.program-hero p { 
  font-size: 1.1rem; 
  color: rgba(245,240,232,0.72); 
  line-height: 1.8; 
  max-width: 560px; 
  margin: 0 auto; 
}

.program-content { 
  max-width: 1080px; 
  margin: 0 auto; 
  padding: 5rem 2rem; 
}
.highlight-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin: 3rem 0; 
}
.highlight-card { 
  background: #1a1a1a; 
  border: 1px solid rgba(245,196,0,0.15); 
  border-radius: 1rem; 
  padding: 2rem; 
  text-align: center; 
  transition: all 0.3s; 
}
.highlight-card:hover { 
  border-color: var(--gold); 
  transform: translateY(-4px); 
}
.highlight-icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
}
.highlight-card h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  font-size: 1.15rem; 
  margin-bottom: 0.6rem; 
}
.highlight-card p { 
  color: var(--muted); 
  font-size: 0.9rem; 
  line-height: 1.7; 
}

.events-placeholder { 
  background: #1a1208; 
  border: 1px solid rgba(245,196,0,0.2); 
  border-radius: 1rem; 
  padding: 3rem; 
  text-align: center; 
  margin: 4rem 0; 
}
.events-placeholder h2 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  font-size: 1.8rem; 
  margin-bottom: 1rem; 
}
.events-placeholder p { 
  color: var(--muted); 
  line-height: 1.8; 
  margin-bottom: 2rem; 
}
.event-placeholder-row { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  max-width: 550px; 
  margin: 0 auto 2.5rem; 
  text-align: left; 
}
.event-placeholder-item { 
  display: flex; 
  align-items: center; 
  gap: 1.25rem; 
  background: rgba(245,196,0,0.03); 
  border: 1px solid rgba(245,196,0,0.08); 
  border-radius: 0.75rem; 
  padding: 1.2rem 1.5rem; 
}
.event-placeholder-item .event-dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: var(--gold); 
  flex-shrink: 0; 
  box-shadow: 0 0 8px var(--gold); 
}
.event-placeholder-item .event-dot.active {
  background: #39FF14; /* Vibrant green or match your brand green */
  box-shadow: 0 0 10px #39FF14;
}
.event-link-group {
  margin-top: 0.2rem;
  font-size: 0.85rem;
}
.event-link-group a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.event-link-group a:hover {
  color: #ffffff;
}
.event-link-sep {
  color: var(--muted);
  margin: 0 0.5rem;
}
.event-placeholder-item div strong { 
  display: block; 
  color: var(--text); 
  margin-bottom: 0.2rem; 
}
.event-placeholder-item div span { 
  font-size: 0.85rem; 
  color: var(--muted); 
  display: block; 
}
.event-dot.active {
  background: #39FF14;
  box-shadow: 0 0 10px #39FF14;
}

.cta-section { 
  background: var(--gold); 
  border-radius: 1rem; 
  padding: 3rem; 
  text-align: center; 
  margin-top: 4rem; /* or less, to taste */
}
.cta-section h2 { 
  font-family: 'Playfair Display', serif; 
  color: var(--dark); 
  font-size: 2.2rem; 
  font-weight: 900; 
  margin-bottom: 0.5rem; 
}
.cta-section p { 
  color: rgba(0,0,0,0.75); 
  font-weight: 600; 
  margin-bottom: 2rem; 
}

@media (max-width: 900px) { 
  .highlight-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 600px) { 
  .highlight-grid { grid-template-columns: 1fr; } 
}
/* ============================================================
   PAXUNITY — Cultural Exchange Layout System
   ============================================================ */
.garden-section { 
  background: linear-gradient(135deg, #1a1208, #111); 
  border-radius: 1.5rem; 
  padding: 1rem; /* less top/bottom space, keep left/right */
  margin: 0 0 3rem;  /* smaller gap on top, keep bottom spacing  1rem 0 3rem; */ 
  text-align: center; 
  border: 1px solid rgba(245,196,0,0.2); 
}
.garden-section h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(1.8rem, 4vw, 2.8rem); 
  color: var(--gold); 
  margin-bottom: 1.5rem; 
}
.garden-section p { 
  color: rgba(245,240,232,0.8); 
  line-height: 2; 
  font-size: 1.05rem; 
  max-width: 700px; 
  margin: 0 auto; 
}

.quote-block { 
  background: linear-gradient(135deg, #1a0d0d, #0d0d0d); 
  border-left: 4px solid var(--gold); 
  border-radius: 0 1rem 1rem 0; 
  padding: 2rem 2.5rem; 
  margin: 3rem 0; 
}
.quote-block p { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.3rem; 
  color: var(--text); 
  line-height: 1.7; 
  font-style: italic; 
}

.values-row { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem; 
  margin: 3rem 0; 
}
.value-item { 
  display: flex; 
  gap: 1.2rem; 
  align-items: flex-start; 
  background: #1a1a1a; 
  border-radius: 1rem; 
  padding: 1.5rem; 
  border: 1px solid rgba(245,196,0,0.1); 
}
.value-emoji { 
  font-size: 2rem; 
  flex-shrink: 0; 
}
.value-item h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  font-size: 1.05rem; 
  margin-bottom: 0.4rem; 
}
.value-item p { 
  color: var(--muted); 
  font-size: 0.88rem; 
  line-height: 1.6; 
}

@media (max-width: 768px) { 
  .values-row { grid-template-columns: 1fr; } 
}
/* ============================================================
   PAXUNITY — Food Support Layout System
   ============================================================ */
.video-section { 
  background: #111; 
  border-radius: 1.2rem; 
  overflow: hidden; 
  margin: 3rem 0; 
  border: 1px solid rgba(245,196,0,0.15); 
}
.video-section video { 
  width: 100%; 
  max-height: 520px; 
  display: block; 
  object-fit: cover; 
}
.video-caption { 
  padding: 1.5rem 2rem; 
  background: #111; 
}
.video-caption h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  font-size: 1.2rem; 
  margin-bottom: 0.5rem; 
}
.video-caption p { 
  color: var(--muted); 
  font-size: 0.9rem; 
  line-height: 1.7; 
}

.two-col { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
  align-items: start; 
  margin: 3rem 0; 
}
.info-card { 
  background: #1a1a1a; 
  border: 1px solid rgba(245,196,0,0.15); 
  border-radius: 1rem; 
  padding: 2rem; 
}
.info-card h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  font-size: 1.2rem; 
  margin-bottom: 1rem; 
}
.info-card ul { 
  list-style: none; 
  padding: 0; 
}
.info-card ul li { 
  color: var(--muted); 
  font-size: 0.92rem; 
  line-height: 1.7; 
  padding: 0.4rem 0; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
  display: flex; 
  align-items: flex-start; 
  gap: 0.6rem; 
}
.info-card ul li::before { 
  content: '✓'; 
  color: var(--gold); 
  font-weight: 700; 
  flex-shrink: 0; 
  margin-top: 2px; 
}

@media (max-width: 768px) { 
  .two-col { grid-template-columns: 1fr; } 
}
/* ============================================================
   PAXUNITY — Volunteer Network Steps Layout System
   ============================================================ */
.steps-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1.2rem; 
  margin: 3rem 0; 
}
.step-card { 
  background: #1a1a1a; 
  border: 1px solid rgba(245,196,0,0.15); 
  border-radius: 1rem; 
  padding: 1.8rem; 
  text-align: center; 
  position: relative; 
}
.step-num { 
  width: 40px; 
  height: 40px; 
  background: var(--gold); 
  color: var(--dark); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 900; 
  font-size: 1.1rem; 
  margin: 0 auto 1rem; 
}
.step-card h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--text); 
  font-size: 1rem; 
  margin-bottom: 0.5rem; 
}
.step-card p { 
  color: var(--muted); 
  font-size: 0.85rem; 
  line-height: 1.6; 
}

@media (max-width: 900px) { 
  .steps-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 768px) { 
  .steps-grid { grid-template-columns: 1fr; } 
}
/* Shared Page Styles */
.page-container { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.policy-header { margin-bottom: 30px; }
.policy-back { color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.info-grid { display: grid; gap: 10px; margin-bottom: 20px; }
/* Admin Login */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
}
.login-card .logo-area {
  text-align: center;
  margin-bottom: 2rem;
}
.login-card h1 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}
.login-card .subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
/* ── Event Banner ─────────────────────────────────────────── */
.event-banner {
  background: rgba(184, 148, 58, 0.12);
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.event-banner-track {
  display: flex;
  width: max-content;
  animation: bannerScroll 30s linear infinite;
  will-change: transform;
  pointer-events: none;
}

.event-banner-track:hover {
  animation-play-state: paused;
}

.event-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  pointer-events: auto;
}

.banner-link:hover {
  color: #f5c400;
  border-color: #f5c400;
}

.banner-sep {
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  flex-shrink: 0;
  pointer-events: none;
}

.banner-text {
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
}

.banner-gap {
  display: inline-block;
  width: 60px;
  flex-shrink: 0;
}

@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Fix mobile menu conflict with event banner ──────────── */
@media (max-width: 768px) {
  .event-banner {
    font-size: 13px;
  }
  .event-banner-content {
    font-size: 13px;
    gap: 8px;
    padding: 0 16px;
  }
}
/* ── Stop banner stealing touch events on mobile ─────────── */
.event-banner-track {
  pointer-events: none;
}

.event-banner-track .banner-link,
.event-banner-track .banner-text {
  pointer-events: auto;
}
.email-line {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.email-line a {
  color: rgba(245,240,232,0.72);
  font-size: 0.92rem;
  text-decoration: none;
}

.email-line a:hover {
  color: var(--gold);
}

.sep {
  color: var(--muted);
}
.no-underline {
  text-decoration: none !important;
  color: rgba(252, 251, 249, 0.877);
  font-weight: bold;
}

.no-underline:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}
.link-clean {
  text-decoration: none !important;
  color: var(--gold);
  font-weight: 600;
}

.link-clean:hover {
  color: var(--gold-light) !important;
  text-decoration: none !important;
}
/* ── Register Badge ───────────────────────────────────────── */
.register-badge {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--gold, #f5c400);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  padding: 1.2rem 2.4rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  cursor: pointer;
}

.register-badge-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.register-badge-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(26,26,26,0.2);
  padding-top: 0.6rem;
}

.badge-event {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
}

.badge-date,
.badge-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a2a2a;
}

.badge-venue {
  font-size: 0.76rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 3px;
}

.badge-address {
  font-size: 0.72rem;
  color: #3a3a3a;
}

.badge-upcoming-text {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(15, 15, 15, 0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .register-badge {
    padding: 1rem 1.8rem;
  }
  .register-badge-title {
    font-size: 1.8rem;
  }
}

/* ── Partner / sponsor logo strip ─────────────────────────────
   Flanks the register badge. Logos are capped to a fixed height
   so mixed aspect ratios (wide vs. square logos) sit on a common
   baseline without ever being stretched. */
.sponsor-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.sponsor-strip-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.sponsor-strip-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.sponsor-strip-logos {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.sponsor-strip-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0.6rem;
  padding: 0.5rem 0.9rem;
  height: 56px;
  box-sizing: border-box;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Only the third logo gets the dark pill background */
.sponsor-strip-logos a.logo-pill {
  background: var(--text);
}

.sponsor-strip-logos a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245,196,0,0.18);
}
.sponsor-strip-logos img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .sponsor-strip {
    gap: 1.6rem;
    margin-top: 1.2rem;
  }
  .sponsor-strip-logos a {
    height: 44px;
    padding: 0.4rem 0.7rem;
  }
  .sponsor-strip-logos img {
    max-width: 100px;
  }
}
/* ── Pillar links ─────────────────────────────────────────── */
.about-pillar-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.about-pillar-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}
/* ── Feedback Page ─────────────────────────────────────────── */
.feedback-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a2a1a 100%);
}
.feedback-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.feedback-hero p {
  color: var(--muted);
  font-size: 1rem;
}
.feedback-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.fb-form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}
.fb-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.fb-field {
  margin-bottom: 1.25rem;
}
.fb-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.fb-field label .optional {
  font-weight: 400;
  text-transform: none;
  color: var(--muted);
  font-size: 0.75rem;
}
.fb-field input,
.fb-field select,
.fb-field textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.fb-field input:focus,
.fb-field select,
.fb-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.fb-field textarea { resize: vertical; min-height: 120px; }
.fb-field select option { background: var(--dark3); }
.fb-word-count {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  margin-top: 0.25rem;
}
.fb-word-count.over { color: #e57373; }
.fb-anon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.fb-anon-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.fb-anon-row label {
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.fb-submit-btn {
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  }
  .fb-msg {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.fb-msg.success { 
  background: rgba(126,217,139,0.15); 
  color: #7ed98b; 
  border: 1px solid rgba(126,217,139,0.3); 
  display: block;
}
.fb-msg.error { 
  background: rgba(229,115,115,0.15); 
  color: #e57373; 
  border: 1px solid rgba(229,115,115,0.3); 
  display: block;
}
.legal-note {
  text-align: center !important;
  font-size: 0.55rem !important;
  color: #ccc !important;
  margin-top: 1rem !important;
  padding-top: 0.75rem !important;
  opacity: 0.85 !important;
  letter-spacing: 0.4px !important;
  line-height: 1.2 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important; /* light grey bar */
}

.legal-note i {
  color: #d4af37 !important;
  margin-right: 4px !important;
  font-size: 0.65rem !important;
}
/* FIX: Prevent social links from stretching full width */
.social-links {
  align-items: flex-start !important;
}

.social-row-link {
  display: inline-flex !important;
  width: auto !important;
}
.address {
  font-size: 10pt !important;
}
/* ============================
   MISSION FRAME (PaxUnity Brand)
   Creates a dark, gold-bordered frame
   for the official mission statement.
   ============================ */
.mission-frame {
  background: #111; /* Dark background to match PaxUnity brand */
  border: 1px solid rgba(245,196,0,0.35); /* Soft gold border */
  padding: 2rem; /* Comfortable spacing inside the frame */
  border-radius: 1.2rem; /* Rounded corners for modern look */
  margin: 0.5rem 0 1rem 0; /* Space above and below the frame "changed from 2rem 0; */
  text-align: left; /* Keep mission text aligned left */
  box-shadow: 0 2px 10px rgba(0,0,0,0.15); /* Subtle depth shadow */
}

/* Mission text inside the frame */
.mission-frame p {
  color: #f5f0e8; /* Soft white text for readability */
  font-size: 1.15rem; /* Slightly larger than normal text */
  line-height: 1.85; /* Comfortable reading spacing */
  margin: 0; /* Remove default paragraph spacing */
  font-weight: 500; /* Medium weight for clarity */
}
/* ============================================================
   This is the new addition to index main page
   ============================================================ */

/* Tighten spacing between hero, banner, and welcome strip */
#home {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.event-banner {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.welcome-strip {
  margin-top: 0 !important;
  padding-top: 1.5rem !important;
}

/* Our Mission label — remove pipe */
.mission-intro .section-label {
  border-left: none !important;
  padding-left: 0 !important;
}

/* Our Mission heading — smaller font */
.mission-intro .section-title {
  font-size: clamp(1rem, 2vw, 1.4rem) !important;
  line-height: 1.6 !important;
  margin-bottom: 0.75rem !important;
}

/* Our Mission section — tighter spacing */
.mission-intro {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 0 !important;
}

/* Our Mission heading link */
.mission-intro a.mission-heading-link {
  color: inherit;
  text-decoration: none;
}
.mission-intro a.mission-heading-link:hover {
  color: #d4af37;
}

/* Programs preview grid */
.programs-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Programs preview card */
.program-preview-card {
  background: #1e1a10;
  border: 1px solid rgba(245,196,0,0.4);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.program-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.program-preview-card .prog-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.program-preview-card h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.program-preview-card p {
  color: rgba(245,240,232,0.75);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Address / legal note font */
.address {
  font-size: 11pt !important;
}
/* Events info badge container
   Provides a dark background, gold accent border, rounded edges,
   and spacing that matches the PaxUnity event layout. */
.event-info-badge {
  background: #111;
  border-left: 4px solid #d4af37;
  padding: 1.2rem 1.3rem;
  margin-top: 1rem;
  border-radius: 6px;
  max-width: 520px;
}

/* Event info badge title
   Gold title text with strong weight and clean spacing. */
.eib-title {
  color: #d4af37;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}

/* Event info badge text
   Light grey body text with comfortable line height for readability. */
.eib-text {
  color: #eee;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0.4rem 0 0;
}
/* Stat Farm Make the morphing sponsor behave like a normal flex item inside the flex row */
.raja-sponsor {
  position: relative;        /* Needed for the morphing images to stack */
  display: inline-block;     /* Makes this sponsor act like the other logos */
  height: 55px;              /* Same height as your images */
  width: auto;               /* Allows natural width */
  text-align: center;        /* Centers the images inside the wrapper */
  vertical-align: middle;    /* Aligns perfectly with other sponsor logos */
  margin: 0 0.75rem;         /* Matches spacing of other logos inside flex */
}

/* Shared styling for both images so they overlap perfectly */
.raja-sponsor img {
  position: absolute;        /* Stacks both images on top of each other */
  top: 0;
  left: 0;
  max-height: 55px;          /* Increased by 10 percent */
  width: auto;
  transition: opacity 2s ease-in-out; /* Smooth fade */
}

/* Front image starts visible and fades out during the animation */
.raja-front {
  opacity: 1;
  animation: rajaFadeFront 10s infinite;
}

/* Back image starts hidden and fades in during the animation */
.raja-back {
  opacity: 0;
  animation: rajaFadeBack 10s infinite;
}

/* Animation for the front image fading out and returning */
@keyframes rajaFadeFront {
  0% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}

/* Animation for the back image fading in and then fading out */
@keyframes rajaFadeBack {
  0% { opacity: 0; }
  40% { opacity: 0; }
  50% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}
/* ============================================================
   FREE EVENT BADGE — sits above the REGISTER card
   Static (no animation) pill highlighting the event is free
   ============================================================ */
.free-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 20px;
  background: linear-gradient(135deg, #524b30, #796835);
  color: #f3ef04;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(245, 196, 0, 0.35);
  text-decoration: none;   /* removes default link underline — not inherited from .register-badge */
}

/* Makes "FREE" stand out larger and bolder within the badge text */
.badge-free-word {
  font-size: 20px;
  font-weight: 800;
  margin-right: 3px;
}