@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&family=Merriweather:wght@400;700;900&display=swap');

:root {
  --forest: #0a2613;
  --canopy: #133d1f;
  --emerald: #2ecc71;
  --leaf: #82e0aa;
  --bark: #d4a76a;
  --ivory: #f0ece3;
  --text: #b8d4c1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--forest);
  color: var(--text);
  line-height: 1.8;
}

h1,h2,h3 { font-family: 'Merriweather', serif; color: var(--ivory); }
a { color: var(--emerald); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--leaf); }

.hd {
  background: rgba(10,38,19,0.97);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid var(--emerald);
  padding: 0 2rem;
}

.hd-row {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.hd-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hd-logo svg { width: 30px; height: 30px; }

.hd-nav { display: flex; list-style: none; gap: 1.5rem; }
.hd-nav a { color: var(--text); font-weight: 600; font-size: 0.83rem; text-transform: uppercase; letter-spacing: 1px; }
.hd-nav a:hover { color: var(--emerald); }

.hd-ham { display: none; background: none; border: none; cursor: pointer; }
.hd-ham span { display: block; width: 24px; height: 2px; background: var(--emerald); margin: 5px 0; }

.forest-hero {
  background: linear-gradient(160deg, var(--canopy), var(--forest));
  padding: 5rem 2rem;
  text-align: center;
}

.forest-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; color: var(--leaf); }
.forest-hero p { max-width: 700px; margin: 0 auto 2rem; font-size: 1.05rem; color: rgba(184,212,193,0.85); }

.grove-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--emerald);
  color: var(--forest);
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.grove-btn:hover { background: var(--leaf); color: var(--forest); }

.badge-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  gap: 1.5rem;
}

.badge {
  background: var(--canopy);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid var(--emerald);
}

.badge .sym { font-size: 2rem; margin-bottom: 0.5rem; }
.badge h4 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--emerald); }
.badge p { font-size: 0.85rem; color: rgba(184,212,193,0.6); }

.area {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.area h2 { text-align: center; font-size: 1.9rem; margin-bottom: 0.8rem; }
.area .sub { text-align: center; max-width: 720px; margin: 0 auto 2rem; color: rgba(184,212,193,0.8); }

.gf {
  max-width: 930px;
  margin: 0 auto;
  border: 2px solid var(--emerald);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(46,204,113,0.1);
}

.gf iframe { width: 100%; height: 580px; border: none; display: block; }

.leaf-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.leaf-card {
  background: var(--canopy);
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--emerald);
}

.leaf-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--leaf); }
.leaf-card p { font-size: 0.9rem; color: rgba(184,212,193,0.7); }

.ft-area {
  background: var(--canopy);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(46,204,113,0.2);
}

.ft-area a { margin: 0 1rem; color: var(--emerald); font-size: 0.9rem; }
.ft-area .sm { margin-top: 1rem; font-size: 0.75rem; color: rgba(184,212,193,0.35); line-height: 1.9; }

.age-cover {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}

.age-cover.hidden { display: none; }

.age-popup {
  background: var(--canopy);
  border: 2px solid var(--emerald);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-popup h2 { margin-bottom: 0.8rem; font-size: 1.3rem; color: var(--emerald); }
.age-popup p { margin-bottom: 1.5rem; }
.age-popup-btns { display: flex; gap: 1rem; justify-content: center; }
.age-popup-btns button { padding: 0.7rem 2rem; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 0.88rem; transition: 0.3s; }
.ap-y { background: var(--emerald); color: var(--forest); }
.ap-y:hover { background: var(--leaf); }
.ap-n { background: transparent; border: 1px solid var(--text) !important; color: var(--text); }
.ap-n:hover { border-color: #e74c3c !important; color: #e74c3c; }

.txt-page { max-width: 1300px; margin: 0 auto; padding: 3rem 2rem 4rem; min-height: 55vh; }
.txt-page h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--emerald); }
.txt-page h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--leaf); }
.txt-page p { margin-bottom: 1rem; }
.txt-page ul { margin: 1rem 0 1.5rem 1.5rem; }
.txt-page li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .hd-ham { display: block; }
  .hd-nav { display: none; position: absolute; top: 64px; left: 0; width: 100%; background: var(--forest); flex-direction: column; padding: 1rem 2rem; border-bottom: 2px solid var(--emerald); }
  .hd-nav.active { display: flex; }
  .hd-nav li { padding: 0.6rem 0; }
  .forest-hero h1 { font-size: 2rem; }
  .badge-row { grid-template-columns: 1fr; }
  .leaf-grid { grid-template-columns: 1fr; }
  .gf iframe { height: 380px; }
}
