/* OutFront Endurance - Base Styles */
/* Shared across all pages */

:root {
  /* Core brand colors */
  --navy-deep: #0A1628;
  --navy-mid: #0F2137;
  --navy-light: #1A3150;
  --ocean: #115E8F;
  --ocean-bright: #1A7AB8;
  --gold: #D4A853;
  --gold-bright: #E8BC6A;
  --coral: #E8735A;
  --coral-bright: #F08B75;
  --seafoam: #7EC8B8;
  --fog: #F5F7FA;
  --fog-dim: #C8D1DB;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--navy-deep);
  color: var(--fog);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Common button styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-bright) 100%);
  color: var(--fog);
  box-shadow: 0 4px 20px rgba(232, 115, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 115, 90, 0.4);
}

.btn-secondary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--fog);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Section spacing */
section {
  padding: 100px 40px;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fog);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--fog-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* View More CTA */
.view-more-cta {
  text-align: center;
  margin-top: 48px;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.view-more-link:hover {
  color: var(--gold-bright);
  gap: 12px;
}

.view-more-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.view-more-link:hover svg {
  transform: translateX(4px);
}

/* Responsive base */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}
