/* hero-simple.css - Simple, direct hero. No gradients, no animations, no BS. */

.hero-simple {
  margin: 0;
  padding: 6rem 2rem 5rem;
  background-color: var(--color-primary, #1e3a8a);
  color: white;
}

.hero-simple-container {
  max-width: 720px;
  margin: 0 auto;
}

.hero-simple-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.hero-simple-title {
  margin: 0 0 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-display, inherit);
}

.hero-simple-subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-simple-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-simple-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display, inherit);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.hero-simple-button.primary {
  background-color: var(--color-secondary, #78350f);
  color: white;
}

.hero-simple-button.primary:hover {
  background-color: #92400e;
  transform: translateY(-1px);
}

.hero-simple-button.secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-simple-button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-simple {
    padding: 4rem 1.5rem 3.5rem;
  }

  .hero-simple-title {
    font-size: 2rem;
  }

  .hero-simple-subtitle {
    font-size: 1rem;
  }

  .hero-simple-cta {
    flex-direction: column;
  }

  .hero-simple-button {
    text-align: center;
  }
}
