/* Custom CSS for Wildland Recreation Analytics */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #2c3e50; /* Midnight blue */
  --secondary-color: #18bc9c; /* Teal accent */
  --text-main: #212529; /* Dark gray for high readability */
  --bg-light: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Hero Section - Light and airy */
.hero-section {
  padding: 1em 1rem;
  background-color: transparent;
  color: var(--primary-color);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hero-section h1 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-size: 3rem;
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #4a5568; /* Slightly lighter gray for subtitle readability */
}

/* Primary Button */
.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: white !important;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #128f76 !important;
  border-color: #128f76 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(24, 188, 156, 0.3);
}

/* Service Cards - Clean look */
.service-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: var(--secondary-color);
}

.service-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-weight: 600;
}

p img.spacer-top {
  margin-top: 2rem; 
}