/* golflive.online — 間距/字體/header/footer 基礎樣式（WF相容化用） */
:root {
  --container: 1200px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --font-editorial: 'Fraunces', serif;
  --font-mono: 'Work Sans', sans-serif;
}

.site-header {
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-family: var(--font-editorial);
  font-weight: 800;
  font-size: 20px;
  color: var(--clr-text);
  text-decoration: none;
}
.header-nav { display: flex; gap: 24px; }
.nav-link {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-link:hover { color: var(--clr-accent); }

.site-footer {
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.footer-inner a {
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-left: 16px;
}
.footer-inner a:hover { color: var(--clr-accent); }

* , *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Fraunces', serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
