@import url('https://fonts.googleapis.com/css2?family=Yellowtail&family=Poppins:wght@400;500;600;700&family=Nunito:wght@400;600&display=swap');

:root {
  --gold: #F4C430;
  --gold-dark: #D9A800;
  --blue: #7EB6E0;
  --blue-dark: #4A87B5;
  --ink: #33363A;
  --muted: #6B6F73;
  --cream: #FFFCF5;
  --white: #FFFFFF;
  --border: #EAE6DA;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0;
}

a { color: var(--blue-dark); }
a:hover { color: var(--gold-dark); }

.brand {
  font-family: 'Yellowtail', cursive;
  color: var(--blue);
  font-weight: 400;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img { height: 40px; width: auto; }

.nav-brand span {
  font-family: 'Yellowtail', cursive;
  font-size: 1.6rem;
  color: var(--blue-dark);
}

nav.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

nav.main-nav a.active,
nav.main-nav a:hover { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 16px 24px 20px;
    gap: 14px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  nav.main-nav.open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 64px 24px 56px;
}

.hero img.ribbon { height: 130px; margin-bottom: 8px; }

.hero h1 {
  font-family: 'Yellowtail', cursive;
  font-weight: 400;
  font-size: 3.4rem;
  color: var(--blue);
  margin: 0 0 10px;
}

.hero p.tagline {
  font-size: 1.15rem;
  color: var(--blue-dark);
  max-width: 480px;
  margin: 0 auto 28px;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue);
}

/* Sections */
section.page-section {
  padding: 56px 24px;
}

section.page-section.alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-lede {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 { color: var(--blue-dark); }

.event-date {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card .icon { font-size: 2rem; margin-bottom: 10px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }

/* Page banner (non-home pages) */
.page-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 48px 24px 40px;
}

.page-banner h1 {
  font-family: 'Yellowtail', cursive;
  font-weight: 400;
  color: var(--blue);
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.page-banner p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Embeds / forms */
.embed-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.embed-placeholder {
  background: var(--white);
  border: 2px dashed var(--blue);
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
}

.embed-placeholder strong { color: var(--blue-dark); }

/* FAQ */
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

details.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}

details.faq-item p { margin-bottom: 0; margin-top: 12px; color: var(--muted); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-item .icon { font-size: 1.8rem; margin-bottom: 8px; }

/* Callout / Story */
.story-box {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #DDD;
  padding: 40px 24px 28px;
  text-align: center;
  margin-top: 40px;
}

footer.site-footer .brand { color: var(--gold); font-size: 1.4rem; }

footer.site-footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0;
}

footer.site-footer a { color: #DDD; text-decoration: none; font-size: 0.9rem; }
footer.site-footer a:hover { color: var(--gold); }

footer.site-footer .fine-print { color: #999; font-size: 0.8rem; margin-top: 14px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
ul.plain { list-style: none; padding: 0; margin: 0; }
