/* ──────────────────────────────────────────────────────────────────────────
   Golfapedia brand wordmark gradient.
   Header layout (sizing, positioning, mobile centering, desktop nav) is
   owned by gp-site-shared.css so the cascade always resolves to a single
   consistent set of rules across every static page (Task 6).
   ────────────────────────────────────────────────────────────────────── */

/* Golfapedia wordmark — matches cinematic green accent used on Tour3D / homepage */
.gp-brand-text {
  background: linear-gradient(135deg, #86efac 0%, #4ade80 38%, #22c55e 72%, #bbf7d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #4ade80;
  font-weight: inherit;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gp-brand-text {
    color: #4ade80;
    -webkit-text-fill-color: currentColor;
  }
}

.logo .gp-brand-text {
  font-weight: 800;
}
