/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #2e6417;
  --gold-light: #3d8a1e;
  --black: #1A1A1A;
  --dark: #111111;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #CCCCCC;
  --gray-text: #555555;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: #333; border-color: #333; }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto 40px;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--gold);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-badge {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--gold); background: var(--gray-light); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icons a {
  width: 32px;
  height: 32px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { background: var(--gold); color: var(--white); }
.social-icons svg { width: 15px; height: 15px; fill: currentColor; }

/* hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid #eee;
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  color: var(--dark);
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  display: none;
  height: 100%;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide.active { display: flex; }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-nav:hover { background: rgba(255,255,255,0.3); }
.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.25); }
.hero.controls-hidden .hero-nav,
.hero.controls-hidden .hero-dots { visibility: hidden; }
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 620px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-strip { display: flex; gap: 10px; margin-top: 28px; }
.hero-photo-strip button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}
.hero-photo-strip button:hover { transform: translateY(-3px); }
.hero-photo-strip img {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ===== MISSION ===== */
.mission {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}
.mission-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--gray-text);
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.75;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
  text-align: left;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 80px 0;
  background: var(--gray-light);
  text-align: center;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.pillar-card p { font-size: 0.92rem; color: var(--gray-text); }

/* ===== EVENTS ===== */
.events {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.event-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.event-date-bar {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.event-date-block {
  text-align: center;
  min-width: 44px;
}
.event-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-day { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.event-title-bar h3 { font-size: 1rem; font-weight: 700; }
.event-title-bar p { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.event-body { padding: 20px; }
.event-body p { font-size: 0.9rem; color: var(--gray-text); margin-bottom: 16px; }
.event-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gray-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.no-events {
  padding: 60px 20px;
  text-align: center;
  color: var(--gray-text);
  font-size: 1rem;
  background: var(--gray-light);
  border-radius: 8px;
  margin-top: 32px;
}
.no-events p:first-child { font-size: 2rem; margin-bottom: 10px; }

/* ===== KICKOFF LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ===== SUPPORT / DONATE ===== */
.donate {
  padding: 96px 0;
  background: var(--dark);
  text-align: center;
  color: var(--white);
}
.donate .section-title { color: var(--white); }
.donate .section-subtitle { color: rgba(255,255,255,0.7); }
.donate-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ===== NEWS ===== */
.news {
  padding: 80px 0;
  background: var(--gray-light);
  text-align: center;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.news-img {
  width: 100%;
  height: 180px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.5rem;
}
.news-body { padding: 22px; }
.news-date { font-size: 0.76rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.news-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.news-body p { font-size: 0.88rem; color: var(--gray-text); }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 64px 0;
  background: var(--gold);
  text-align: center;
}
.newsletter .section-title { color: var(--white); }
.newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--dark); }
.newsletter-form button { flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.65);
}
.footer-col a:hover { color: var(--gold); }
.footer-logo { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 15px; height: 15px; fill: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 0; }
  .hero-nav { width: 36px; height: 36px; font-size: 0.95rem; }
  .hero-photo-strip img { width: 56px; height: 56px; }
  .stats-inner { gap: 32px; }
  .mission-quote { padding-left: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
