/* Oveli Football — shared styles for guides / content pages */
:root {
  --bg: #f7faf6;
  --bg-soft: #ffffff;
  --bg-tint: #ecf6ee;
  --ink: #0e1a14;
  --ink-2: #34463c;
  --muted: #6b7c72;
  --line: #dfe9e0;
  --pitch: #12a35c;
  --pitch-deep: #0d7a37;
  --pitch-soft: #d6f0dd;
  --grad-pitch: linear-gradient(135deg, #16b364 0%, #0f8a4e 100%);
  --shadow-sm: 0 2px 8px rgba(13, 30, 22, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(13, 30, 22, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: 'Sora', 'Inter', sans-serif; letter-spacing: -0.02em; margin: 0; line-height: 1.2; }
p { margin: 0; color: var(--ink-2); }
a { color: var(--pitch-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 250, 246, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-family: 'Sora', sans-serif; font-size: 17px; color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 2px 10px -2px rgba(18,163,92,0.4); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-pitch {
  background: var(--grad-pitch); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 12px 26px -10px rgba(18,163,92,0.6);
}
.btn-pitch:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 12px; }

/* Breadcrumb */
.crumb { font-size: 13px; color: var(--muted); padding: 22px 0 0; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }

/* Article */
article { padding: 8px 0 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pitch-soft); color: var(--pitch-deep);
  font-weight: 600; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin: 20px 0 18px;
}
article h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; margin-bottom: 14px; }
.lede { font-size: 19px; color: var(--ink-2); margin-bottom: 8px; }
.byline { font-size: 13.5px; color: var(--muted); margin: 14px 0 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
article h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin: 40px 0 14px; }
article h3 { font-size: 18px; font-weight: 700; margin: 26px 0 10px; }
article p { margin: 0 0 16px; font-size: 16.5px; }
article ul, article ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); font-size: 16.5px; }
article li { margin: 6px 0; }
article strong { color: var(--ink); }

.callout {
  background: linear-gradient(180deg, var(--bg-tint), #ffffff);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pitch);
  border-radius: var(--radius);
  padding: 18px 20px; margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.callout p { margin: 0; font-size: 15.5px; }
.callout strong { color: var(--pitch-deep); }

.cta-band {
  background: linear-gradient(135deg, #0e1a14 0%, #103423 60%, #0d7a37 130%);
  color: #eafff2; border-radius: var(--radius-lg);
  padding: 40px 32px; margin: 44px 0 8px; text-align: center;
}
.cta-band h2 { color: #fff; font-size: 26px; margin: 0 0 10px; }
.cta-band p { color: #b9d8c5; margin: 0 0 22px; }

/* Guide hub cards */
.hub-head { text-align: center; padding: 44px 0 8px; }
.hub-head h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; margin-bottom: 12px; }
.hub-head p { font-size: 18px; max-width: 620px; margin: 0 auto; }
.guide-list { display: grid; gap: 16px; padding: 32px 0 48px; }
.guide-card {
  display: block; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(18,163,92,0.35); text-decoration: none; }
.guide-card h2 { font-size: 21px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.guide-card p { font-size: 15px; }
.guide-card .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pitch-deep); margin-bottom: 12px; }

/* Footer */
footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 32px 0; margin-top: 24px; }
.foot { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.foot small { color: var(--muted); font-size: 13px; }
