:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --green: #16A34A;
  --green-dark: #15803D;
  --gold: #D97706;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --radius: 12px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--gray-50);
}

/* NAV */
nav {
  background: var(--blue);
  color: #fff;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.nav-logo .nav-sub { font-weight: 400; opacity: 0.6; font-size: 0.7rem; display: block; letter-spacing: 0.5px; line-height: 1; margin-top: -2px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 8px; }
.hero .subtitle { font-size: 1.3rem; opacity: 0.9; margin-bottom: 12px; }
.hero .tagline {
  font-size: 1rem;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-white { background: #fff; color: var(--blue); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-green { background: var(--green); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }

/* DONATE */
.donate-section {
  background: linear-gradient(135deg, var(--gold) 0%, #B45309 100%);
  color: #fff;
  text-align: center;
}
.donate-section .section-title { color: #fff; }
.donate-section .section-subtitle { color: rgba(255,255,255,0.85); }
.donate-section .btn { font-size: 1.15rem; padding: 14px 36px; }

/* IMAGE CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  height: 60vh;
  max-height: 560px;
  min-height: 320px;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.65); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: #fff; transform: scale(1.2); }

/* SECTIONS */
section { padding: 64px 24px; }
/* Offset in-page anchor jumps so the sticky 60px nav doesn't cover the target */
section[id], #event { scroll-margin-top: 76px; }
.container { max-width: 900px; margin: 0 auto; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* VALUES */
.values-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.value-chip {
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* HIGHLIGHTS */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-left: 4px solid var(--blue);
}
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--blue-dark); }
.highlight-card p { color: var(--gray-600); font-size: 0.95rem; }

/* PROGRAMS */
#programs { background: var(--gray-100); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.program-card h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}
.program-card ul { list-style: none; }
.program-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.program-card li::before {
  content: '\2022';
  color: var(--green);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.program-schedule {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}

/* EVENT */
.event-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #B45309 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  margin-top: 40px;
}
.event-banner h3 { font-size: 1.8rem; font-weight: 800; }
.event-banner .event-tagline { font-size: 1.2rem; opacity: 0.9; margin: 4px 0 16px; }
.event-details { font-size: 1rem; opacity: 0.9; margin-bottom: 20px; }
.event-items {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.event-item {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  min-width: 140px;
}
.event-item .emoji { font-size: 2rem; }
.event-item .event-name { font-weight: 600; font-size: 0.9rem; }
.event-item .event-tag { opacity: 0.8; font-size: 0.8rem; font-style: italic; }
.event-pricing {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.price-tag {
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
}
.event-perks { opacity: 0.85; font-size: 0.9rem; }

/* UPCOMING EVENTS (Google Calendar) */
.event-card { display: flex; flex-direction: column; gap: 8px; }
.event-card h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}
.event-card .event-when { color: var(--green-dark); font-weight: 600; font-size: 0.95rem; }
.event-card .event-where { color: var(--gray-600); font-size: 0.9rem; }
.event-card .event-desc { color: var(--gray-600); font-size: 0.95rem; }
.event-card .event-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.event-card .event-link:hover { text-decoration: underline; }
.events-status { color: var(--gray-600); font-size: 1rem; grid-column: 1 / -1; }

/* CONTACT */
#contact { background: var(--gray-100); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--blue-dark); }
.contact-info p { margin-bottom: 12px; color: var(--gray-600); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-notice {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  background: #EFF6FF;
  color: var(--blue-dark);
  border: 1px solid #BFDBFE;
  font-size: 0.95rem;
}
.form-notice a { color: var(--blue-dark); font-weight: 600; }

/* CONTACT CTA */
.contact-cta {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.contact-cta h3 { font-size: 1.3rem; color: var(--blue-dark); }
.contact-cta p { color: var(--gray-600); font-size: 0.95rem; }
.contact-cta .btn-email {
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  padding: 16px 32px;
  align-self: center;
}
.contact-cta .email-plain { font-size: 0.9rem; color: var(--gray-600); }
.contact-cta .email-plain a { color: var(--blue-dark); font-weight: 600; }

/* FOOTER */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.9rem;
}
footer strong { color: #fff; }
footer .footer-values { margin-top: 8px; opacity: 0.5; font-size: 0.85rem; }

/* MOBILE */
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--blue-dark); padding: 12px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-banner { padding: 28px 20px; }
  .event-banner h3 { font-size: 1.4rem; }
}
