/* ── GTTC 2026 — Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Lato:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --green:       #2a6e3f;
  --green-dark:  #1a4a2c;
  --green-light: #4aab6d;
  --green-pale:  #e8f5ed;
  --yellow:      #c8e030;
  --yellow-warm: #f0d000;
  --teal:        #3a9e8a;
  --teal-pale:   #e4f4f1;
  --orange:      #e07b3a;
  --orange-pale: #fdf0e6;
  --white:       #ffffff;
  --cream:       #fafaf7;
  --gray-light:  #f2f2ee;
  --gray:        #717870;
  --text:        #1e2e1e;
  --text-soft:   #4a5e4a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .nav-title {
  font-family: 'Outfit', sans-serif;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.section-heading .pop { color: var(--green-light); }
.section-heading .pop-teal { color: var(--teal); }
.section-heading .pop-orange { color: var(--orange); }

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── NAV ── */
.site-nav {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

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

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

.nav-ball {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 10px rgba(200,224,48,0.4);
  flex-shrink: 0;
}

.nav-logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.nav-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.15;
}

.nav-title small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: all 0.18s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-links a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 700; }

.nav-links .btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  margin-left: 0.5rem;
}

.nav-links .btn-nav:hover { background: var(--green-dark) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,110,63,0.28); }

.btn-yellow {
  background: var(--yellow);
  color: var(--green-dark);
}
.btn-yellow:hover { background: var(--yellow-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,224,48,0.4); }

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

.btn-lg { font-size: 1.05rem; padding: 0.95rem 2.2rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e8ece8;
  transition: all 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(42,110,63,0.13);
  border-color: var(--green-light);
}

/* ── PHOTO PLACEHOLDERS ── */
.photo-block {
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--green-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.photo-block img { width: 100%; height: 100%; object-fit: cover; }
.photo-block svg { opacity: 0.5; }

/* ── COLOR BANDS ── */
.band-green { background: var(--green-dark); }
.band-teal  { background: var(--teal); }
.band-pale  { background: var(--green-pale); }
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }
.band-orange-pale { background: var(--orange-pale); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--green-dark);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

.page-header .eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,224,48,0.8);
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  position: relative;
}

.page-header h1 span { color: var(--yellow); }

.page-header p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.65;
  position: relative;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  border-left: 4px solid var(--green-light);
  background: var(--green-pale);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box.teal {
  border-color: var(--teal);
  background: var(--teal-pale);
}

.highlight-box.orange {
  border-color: var(--orange);
  background: var(--orange-pale);
}

.highlight-box h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.highlight-box p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* ── INFO PILL ── */
.pill {
  display: inline-block;
  background: var(--gray-light);
  color: var(--gray);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
}

.pill-green { background: var(--green-pale); color: var(--green); }
.pill-teal { background: var(--teal-pale); color: var(--teal); }
.pill-orange { background: var(--orange-pale); color: var(--orange); }

/* ── TAG ── */
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin: 0.1rem;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  padding: 3rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-title { color: var(--white); font-size: 1rem; }
.footer-brand .nav-title small { color: rgba(255,255,255,0.45); }
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.footer-col a, .footer-col span {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  line-height: 2;
  transition: color 0.18s;
}

.footer-col a:hover { color: var(--white); }

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

.tcaps-note {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0.28rem 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
