/**
 * GearProven — site.css
 * Shared stylesheet for all pages.
 * Page-specific styles go in a <style> block within each page.
 *
 * Contents:
 * 1. Reset & Root Variables
 * 2. Base
 * 3. Navigation
 * 4. Page Hero (shared across interior pages)
 * 5. Footer
 * 6. Shared Utility Classes
 * 7. Responsive
 */

/* ─────────────────────────────────────────
   1. RESET & ROOT VARIABLES
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1a2e1a;
  --green-mid: #2d4a2d;
  --green-light: #4a7a4a;
  --green-muted: #8aa08a;
  --green-faint: #5a7a5a;
  --gold: #c9a84c;
  --gold-dark: #412402;
  --bg: #f8f7f4;
  --white: #ffffff;
  --card-border: #e2ddd6;
  --text: #1a2a1a;
  --text-muted: #6a7a6a;
  --text-light: #8a9a8a;
  --radius: 10px;
  --radius-sm: 6px;
}

/* ─────────────────────────────────────────
   2. BASE
───────────────────────────────────────── */
html {
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ─────────────────────────────────────────
   3. NAVIGATION
───────────────────────────────────────── */
.gp-nav {
  background: var(--green);
  height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gp-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 0;
  color: #f8f7f4;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.gp-logo .logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gp-logo .wordmark {
  font-size: 20px;
  letter-spacing: -0.3px;
}

.gp-logo .proven {
  color: var(--gold);
}

.gp-seasonal {
  font-size: 18px;
  line-height: 1;
}

.gp-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.gp-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #a8b8a8;
  border-radius: 2px;
  transition: background 0.15s;
}

.gp-hamburger:hover span {
  background: #f8f7f4;
}

.gp-menu {
  display: none;
  position: absolute;
  top: 52px;
  right: 0;
  width: 220px;
  background: #142214;
  border: 0.5px solid var(--green-mid);
  border-top: none;
  border-radius: 0 0 0 var(--radius);
  padding: 8px 0;
  z-index: 200;
}

.gp-menu.open {
  display: block;
}

.gp-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #a8b8a8;
  text-decoration: none;
  transition: color 0.1s, background 0.1s;
}

.gp-menu a:hover {
  color: #f8f7f4;
  background: var(--green);
}

.gp-menu hr {
  border: none;
  border-top: 0.5px solid var(--green-mid);
  margin: 6px 0;
}

.gp-menu .all-cats {
  color: var(--gold) !important;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   4. PAGE HERO (interior pages)
───────────────────────────────────────── */
.gp-page-hero {
  background: var(--green);
  padding: 36px 0 40px;
}

.gp-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.gp-page-eyebrow {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 10px;
}

.gp-page-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: #f8f7f4;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.gp-page-lead {
  font-size: 15px;
  color: var(--green-muted);
  line-height: 1.65;
  max-width: 580px;
}

.gp-page-meta {
  font-size: 12px;
  color: var(--green-faint);
}

/* ─────────────────────────────────────────
   5. FOOTER
───────────────────────────────────────── */
.gp-footer {
  background: var(--green);
  padding: 20px;
}

.gp-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.gp-footer-links a {
  font-size: 12px;
  color: var(--green-faint);
  text-decoration: none;
}

.gp-footer-links a:hover {
  color: #a8b8a8;
}

.gp-footer-disclosure {
  font-size: 11px;
  color: #4a6a4a;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   6. SHARED UTILITY CLASSES
───────────────────────────────────────── */

/* Standard content body wrapper */
.gp-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Section headers with horizontal rule */
.gp-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.gp-section-title {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  white-space: nowrap;
}

.gp-section-line {
  flex: 1;
  height: 0.5px;
  background: var(--card-border);
}

/* Gold CTA button */
.gp-btn-gold {
  background: var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}

.gp-btn-gold:hover {
  background: #d4b560;
}

/* Dark green CTA button */
.gp-btn-dark {
  background: var(--green);
  color: #f8f7f4;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}

.gp-btn-dark:hover {
  background: #243824;
}

/* Gold left-border callout card */
.gp-callout {
  background: var(--white);
  border: 0.5px solid var(--card-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
}

/* Dark green callout block */
.gp-callout-dark {
  background: var(--green);
  border-radius: var(--radius);
  padding: 18px 20px;
}

/* Amazon associate note */
.gp-amazon-note {
  font-size: 11px;
  color: var(--green-faint);
  margin-top: 12px;
}

/* Ad zones — hidden by default, no layout impact */
.ad-zone {
  display: none;
}

/* ─────────────────────────────────────────
   7. RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 480px) {
  .gp-page-title {
    font-size: 26px;
  }

  .gp-menu {
    width: 100%;
    border-radius: 0;
  }
}
