/* Header and Hero Section Styles */

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-image: url('https://images.pexels.com/photos/6646918/pexels-photo-6646918.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 86, 133, 0.7); /* Primary dark with opacity */
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  max-width: 900px;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  color: var(--neutral-200);
}