/* ============================================
   BIG SY — Exact reproduction of bigsyinc.org
   Colors, fonts, layout match live site (Dawn-style)
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f9f9f9;
  --color-text: #121212;
  --color-text-muted: #121212;
  --color-text-strong: #121212;
  --color-border: rgba(18, 18, 18, 0.08);
  --color-accent: #121212;
  --color-stat: #121212;
  --color-button: #121212;
  --color-button-text: #ffffff;
  --font: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --page-width: 1200px;
  --space: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --font-body-scale: 1;
  --font-heading-scale: 1;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: var(--color-bg);
}

p {
  margin: 0 0 1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--font);
}

a { color: var(--color-text); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
}
.container--narrow { max-width: 720px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space);
  padding: 0.5rem 1rem;
  background: var(--color-text);
  color: #fff;
  font-size: 0.875rem;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space); }

/* ============================================
   Header — two-tier blue banner (match bigsyinc.org)
   ============================================ */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
/* Compact header when scrolled — much slimmer */
.header-wrapper--compact .header-announcement {
  padding: 0.25rem var(--space);
  font-size: 0.75rem;
}
.header-wrapper--compact .site-header--blue {
  padding: 0.25rem 0 0;
}
.header-wrapper--compact .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}
.header-wrapper--compact .header-logo-wrap {
  gap: 0;
}
.header-wrapper--compact .header-logo {
  font-size: 1.25rem;
  line-height: 1.2;
}
.header-wrapper--compact .header-logo-tagline {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  visibility: hidden;
}
.header-wrapper--compact .nav-main--bar {
  margin-top: 0.25rem;
  padding: 0.25rem 0 0.35rem;
  border-top-width: 1px;
}
.header-wrapper--compact .nav-main--bar a {
  padding: 0.3rem 0.75rem;
  font-size: 0.9375rem;
}
.header-wrapper--compact .nav-main--bar .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.header-wrapper--compact .header-icon {
  padding: 0.35rem;
}
.header-wrapper--compact .header-icon svg {
  width: 18px;
  height: 18px;
}

.header-announcement {
  background: #1a365d;
  padding: 0.5rem var(--space);
  text-align: center;
  transition: padding 0.3s ease, font-size 0.3s ease;
}
.header-announcement__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header-announcement__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space) 0;
}
.site-header--blue {
  background: #2c5282;
  border-bottom: none;
  padding: 0.75rem 0 0;
  transition: padding 0.3s ease;
}
.site-header--blue .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space);
  transition: padding 0.3s ease;
}
.site-header--blue .header-icon {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: padding 0.3s ease, color 0.2s ease;
}
.site-header--blue .header-icon svg {
  transition: width 0.3s ease, height 0.3s ease;
}
.site-header--blue .header-icon:hover {
  color: #fff;
}
.site-header--blue .header-icon:first-child {
  justify-self: start;
}
.site-header--blue .header-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-self: end;
}
.site-header--blue .header-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.3s ease;
}
.site-header--blue .header-logo {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.15;
  transition: font-size 0.3s ease;
}
.site-header--blue .header-logo:hover {
  color: #fff;
  text-decoration: none;
}
.site-header--blue .header-logo-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  line-height: 1.2;
  max-height: 2em;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.3s ease, margin 0.3s ease, visibility 0.25s ease;
}

.nav-main--bar {
  margin-top: 0.75rem;
  padding: 0.5rem 0 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transition: margin 0.3s ease, padding 0.3s ease;
}
.nav-main--bar .container {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: padding 0.3s ease;
}
.nav-main--bar .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  justify-content: center;
}
.nav-main--bar a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: padding 0.3s ease, font-size 0.3s ease, color 0.2s ease;
}
.nav-main--bar a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.nav-main--bar a.header__active-menu-item {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space);
}
.btn-donate {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--color-button);
  color: var(--color-button-text);
  border-radius: 0;
  text-decoration: none;
}
.btn-donate:hover { opacity: 0.9; text-decoration: none; color: var(--color-button-text); }

.nav-main .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}
.nav-main a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav-main a:hover { color: var(--color-accent); }

.nav-instagram {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}
.nav-instagram:hover { color: var(--color-text); text-decoration: underline; text-underline-offset: 0.3rem; }

@media (max-width: 768px) {
  .site-header--blue .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav-main .nav-list { gap: var(--space); }
  .nav-main--bar .nav-list { justify-content: center; flex-wrap: wrap; }
}

/* ============================================
   Hero — Create an Impact That Lasts + slider
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #3d5a80;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide--active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-xl);
  text-align: center;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.hero__title {
  margin: 0 0 var(--space);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero__counter {
  margin: 0;
  font-size: 0.9375rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero-arrow--prev {
  left: var(--space);
}
.hero-arrow--next {
  right: var(--space);
}

.hero-dots {
  position: absolute;
  bottom: var(--space);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot--active { background: #fff; }

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--space-xl) 0;
}
.section__title {
  margin: 0 0 var(--space-lg);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
  color: var(--color-text-strong);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.section__subtitle {
  margin: 0 0 var(--space);
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Stat cards — cooler / fun */
.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}
.stat-item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg);
  border-radius: 0;
  border: 0.1rem solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-stat);
  opacity: 0.9;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(86, 123, 166, 0.22);
}
.stat-item__label {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.stat-item__value {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-stat);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* A Message From Our Founders */
.section-founders {
  background: var(--color-bg-alt);
}
.section-founders .section__title { margin-bottom: var(--space); }
.founder-quote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
.founder-quote p {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
.founder-quote cite {
  display: block;
  margin-top: var(--space);
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Stay Connected */
.section-signup .section__title { margin-bottom: 0.25rem; }
.section-signup .section__subtitle { margin-bottom: var(--space); }
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto var(--space);
}
.signup-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.5rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
}
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 0.1rem rgba(18, 18, 18, 0.55);
}
.btn-primary {
  padding: 0.5rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--color-button);
  color: var(--color-button-text);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; }
.signup-instagram {
  text-align: center;
  margin: 0;
  font-size: 0.9375rem;
}
.signup-instagram a { color: var(--color-text); text-decoration: underline; text-underline-offset: 0.3rem; }

.hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.footer-copy { margin: 0 0 0.25rem; }
.footer-links { margin: 0; }
.footer-links a { color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-accent); }

/* ============================================
   Inner pages — About, Contact
   ============================================ */
.page-header {
  padding: var(--space-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text-strong);
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.page-header p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.page-header--compact {
  padding: var(--space-lg) 0;
}
.page-header--about h1 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin-bottom: 0;
}
.about-content {
  padding: var(--space-xl) 0;
}
.contact-inner {
  padding: var(--space) 0;
}
.about-content {
  background: #faf8f5;
}
.about-content .container--narrow {
  text-align: center;
}
.about-section-title {
  margin: var(--space-xl) 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-strong);
  font-family: var(--font);
}
.about-content .container--narrow .about-section-title:first-of-type { margin-top: 0; }
.about-content .container--narrow .about-subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  font-family: var(--font);
}
.about-content .container--narrow p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}
.about-image {
  margin: 0 auto 1.25rem;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tournament section: alternating text + image rows */
.about-tournaments {
  background: #faf8f5;
  padding: var(--space-xl) 0;
}
.container--tournaments {
  max-width: 1000px;
}
.tournament-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.tournament-row:last-of-type {
  margin-bottom: 0;
}
.tournament-row--alt {
  grid-template-areas: "image text";
}
.tournament-text {
  grid-area: text;
  text-align: left;
}
.tournament-heading {
  margin: 0 0 0.75rem;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-strong);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tournament-year-label {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tournament-text p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.tournament-text p:last-child {
  margin-bottom: 0;
}
.tournament-image {
  grid-area: image;
  margin: 0;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.tournament-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 65%;
}
/* 2023 image: show more of top so heads aren't cut off */
.tournament-image--show-top img {
  object-position: center 22%;
}
.tournament-divider {
  margin: 2.5rem 0 0;
  border: 0;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .tournament-row,
  .tournament-row--alt {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .tournament-text {
    text-align: center;
  }
  .tournament-heading {
    text-align: center;
  }
  .tournament-year-label {
    text-align: center;
  }
  .tournament-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 65ch;
  }
}
/* Leadership chart — hierarchy + cards */
.leadership-chart {
  margin: 0 0 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.leadership-tier {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.leadership-tier:last-child {
  margin-bottom: 0;
}
.leadership-tier--top {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
}
.leadership-tier--team {
  grid-template-columns: repeat(2, 1fr);
}
.leadership-card {
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 0.1rem solid var(--color-border);
  border-radius: 0;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.leadership-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(18, 18, 18, 0.15);
}
.leadership-card--founder {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  border-width: 0.15rem;
}
.leadership-name {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-text-strong);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.leadership-card--founder .leadership-name {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}
.leadership-role {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.leadership-card--founder .leadership-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
@media (max-width: 480px) {
  .leadership-tier--top,
  .leadership-tier--team {
    grid-template-columns: 1fr;
  }
}
.about-content .container--narrow .signup-form {
  margin: 0 auto 1rem;
}
.about-instagram {
  margin: 0 0 1.25rem;
}
.about-donate {
  margin-top: var(--space-lg);
  margin-bottom: 0;
}
.about-content .container--narrow .btn-donate { display: inline-block; }
.contact-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-strong);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.3rem 0.6rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 0.1rem solid var(--color-border);
  border-radius: 0;
  margin-bottom: 0.5rem;
  background: var(--color-bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 0.1rem rgba(18, 18, 18, 0.55);
}
.contact-form textarea { min-height: 56px; resize: vertical; }
.contact-form .btn-primary { margin-top: 0; padding: 0.4rem 1rem; font-size: 0.9375rem; }
.contact-follow {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
}
.contact-follow a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.contact-follow a:hover { color: var(--color-accent); }
.contact-follow a + a { margin-left: 1rem; }
.contact-connect-title {
  margin: 3rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
  color: var(--color-text-strong);
}
.contact-connect-text {
  text-align: center;
  margin: 0 0 var(--space);
  font-size: 1.0625rem;
  color: var(--color-text);
}
.contact-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto var(--space);
}
.contact-instagram {
  text-align: center;
  margin: 0;
  font-size: 0.9375rem;
}
.contact-instagram a { color: var(--color-text); text-decoration: underline; text-underline-offset: 0.3rem; }
