:root {
  /* ============================================
     COLOR PALETTE
     ============================================
     This site uses a 2-color brand design with
     dark backgrounds for a modern, premium feel.

     PRIMARY COLORS - Forest green (nature/outdoors)
     - primary: Main brand color, buttons, accents
     - primary-dark: Hover states, emphasis

     SECONDARY COLORS - Warm orange (energy/contrast)
     - secondary: CTA buttons, highlights
     - secondary-dark: Hover states

     NEUTRAL COLORS
     - text: Primary text on dark backgrounds
     - text-light: Secondary text, muted content
     - bg: Primary background (black)
     - bg-alt: Alternative background (dark gray)

     SHADOW COLORS
     - shadow: Box shadows and overlays
     - shadow-light: Subtle shadows
     ============================================ */

  /* Primary - Forest Green */
  --color-primary: #1F3D1B;
  --color-primary-dark: #1E3D1A;

  /* Secondary - Warm Orange */
  --color-secondary: black;
  --color-secondary-dark: #E0763B;

  /* Neutrals */
  --color-text: #FFF;
  --color-text-light: #CCC;
  --color-bg: #000;
  --color-bg-alt: #222;

  /* Shadows */
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-shadow-light: rgba(0, 0, 0, 0.05);

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

html, body {
  background: var(--color-bg);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

/* Header */
.site-header {
  background-color: var(--color-bg);
  box-shadow: 0 2px 4px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.logo-nimble {
  color: var(--color-primary);
}

.logo-outdoors {
  color: var(--color-secondary);
}

.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
}

/* Hero */
.hero {
  background: var(--color-bg);
  height: 80vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  gap: 20px;
  padding-top: 60px;
}

.hero-title {
  z-index: 2;
}

.hero-title h1 {
  font-size: 3.5rem;
  margin-bottom: 0;
}

.hero-image {
  flex: 1;
  background: url('/assets/images/sticks-white-with-specs.png') center/contain no-repeat;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero-content p {
  font-size: 1.75rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


/* Features */
.features {
  padding: 80px 0;
  background-color: var(--color-bg-alt);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--color-bg);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px var(--color-shadow-light);
  transition: transform 0.3s ease;
  border: 5px solid var(--color-primary);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.feature-card p {
  color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--color-primary);
  color: var(--color-text);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.cta-section .btn:hover {
  background-color: var(--color-secondary-dark);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--color-primary);
  color: var(--color-text);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.cta-section .btn:hover {
  background-color: var(--color-secondary-dark);
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-contact {
  text-align: left;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  color: var(--color-text);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-made-in-usa {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-made-in-usa .usa {
  height: 1.5em;
  vertical-align: middle;
  margin-right: 0.5em;
}

.footer-made-in-usa p {
  opacity: 0.8;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand .logo-nimble {
  color: var(--color-secondary);
}

.footer-brand .logo-outdoors {
  color: var(--color-text);
}

.footer-tagline {
  opacity: 0.7;
  margin-bottom: 25px;
}

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
}

.grecaptcha-badge {
  display: none !important;
}

/* Responsive */

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 15px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    color: red;
  }

  .features h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .hero-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-contact,
  .footer-links {
    text-align: center;
  }
  
}

@media (min-width: 1200px) {
  .hero-content p {
    max-width: 1100px;
  }
}
