/* ============================================================
   GP COACHING — Navigation & Footer
   ============================================================ */

/* ── Page switching ── */
.page { display: none; }
.page.active { display: block; }

/* ── Navbar ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 8%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.nav-logo { cursor: pointer; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .78rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mid); cursor: pointer; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: .55rem 1.5rem;
  border-radius: 2px;
  font-size: .75rem !important;
  letter-spacing: .1em !important;
  transition: background .2s, opacity .2s !important;
}
.nav-cta:hover { opacity: .88 !important; }

/* ── Footer ── */
footer {
  background: var(--cream-dark, #EDE6D6);
  border-top: 1px solid var(--border);
  padding: 4rem 8% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .88rem; color: var(--ink-mid);
  font-weight: 300; line-height: 1.7; max-width: 240px;
}
.footer-col h4 {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: .88rem; color: var(--ink-mid); cursor: pointer;
  transition: color .2s; display: block;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .75rem; color: var(--ink-soft); font-weight: 300; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links li:not(:last-child) { display: none; }
}
