:root {
  --green-dark: #0b2e20;
  --green: #14532d;
  --green-mid: #1a6b3a;
  --gold: #c9a227;
  --gold-light: #e7c65c;
  --ink: #1f2937;
  --muted: #5b6b5f;
  --card: rgba(255, 255, 255, 0.96);
  --line: rgba(11, 46, 32, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(7, 26, 18, 0.82), rgba(6, 24, 17, 0.88)),
    url("imgs/background.jpg") center / cover no-repeat fixed;
}

.page-bg {
  background:
    linear-gradient(rgba(7, 26, 18, 0.86), rgba(6, 24, 17, 0.92)),
    url("imgs/background.jpg") center / cover no-repeat fixed;
}

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 30, 21, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  padding: 3px;
  box-shadow: 0 0 0 2px var(--gold);
}

.brand-name {
  line-height: 1.2;
}

.brand-name strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.brand-name span {
  display: block;
  font-size: 0.75rem;
  color: #cdd8cf;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  color: #e6efe8;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: #fff;
}

.nav a.calendar-link,
.nav a.signup-link {
  background: var(--green-mid);
  color: #fff;
}

.nav a.calendar-link:hover,
.nav a.signup-link:hover {
  background: var(--green);
  color: #fff;
}

.nav a.active {
  background: var(--gold-light);
  color: #241d02;
  box-shadow: inset 0 0 0 1px rgba(36, 29, 2, 0.15);
}

.nav a.active:hover {
  background: var(--gold-light);
  color: #241d02;
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 72px 0 56px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 6px;
}

.location-label {
  color: #e3ece5;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero h2 {
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #e3ece5;
  font-size: 1.05rem;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  box-shadow: var(--shadow);
  display: block;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

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

.btn-gold {
  background: var(--gold);
  color: #241d02;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.45);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* ---------- Sections / Cards ---------- */
main {
  flex: 1;
  padding-bottom: 60px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 38px;
  margin-bottom: 28px;
}

.card h2 {
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.card h3 {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 18px;
  margin-bottom: 8px;
}

.card p {
  margin-bottom: 14px;
}

.card li {
  margin-bottom: 8px;
}

.card ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.card ul ul {
  margin-top: 8px;
  color: var(--muted);
}

.goal-note {
  margin-top: 6px;
  color: var(--muted);
}

.join-box {
  text-align: center;
}

.join-box p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.join-box .btn {
  margin: 6px 4px 10px;
}

.callout {
  background: #faf3dc;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 8px;
  font-style: italic;
  color: #5a4a0a;
  margin-bottom: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(6, 22, 15, 0.95);
  border-top: 3px solid var(--gold);
  color: #cfd9d1;
  padding: 36px 0 28px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 10px;
}

.footer-credit {
  color: #cfd9d1;
  font-size: 0.8rem;
}

.footer-credit a {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-credit a:hover {
  color: #fff;
}

.site-footer .nav {
  justify-content: center;
  margin-bottom: 14px;
}

.site-footer .nav a {
  color: #cfd9d1;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 6px 10px;
}

.site-footer .nav a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  background: none;
}

.copyright {
  font-size: 0.8rem;
  color: #9fb2a3;
}

/* ---------- Legal pages ---------- */
.page-title {
  text-align: center;
  color: #fff;
  padding: 48px 0 8px;
}

.page-title h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-title .updated {
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 6px;
}

.legal {
  padding-top: 30px;
}

.legal .card h2 {
  display: block;
}

.legal .card p,
.legal .card li {
  font-size: 0.98rem;
}

.legal ol {
  padding-left: 24px;
}

.legal ol > li {
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.legal ol > li > p,
.legal ol > li > ul {
  font-weight: 400;
  color: var(--ink);
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .card {
    padding: 24px 20px;
  }

  .brand-name strong {
    font-size: 0.85rem;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }
}
