/* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('/source/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 4.5rem;
}

/* Dark overlay for better text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Hero content container */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

/* Logo styles */
.hero-logo {
  width: auto;
  height: 200px;
  max-width: 400px;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Hero tagline styles */
.hero-tagline {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: var(--font-thick);
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

/* Button container */
.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
}

/* Cards Section Spacing */
.cards-section {
  margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 28rem;
  }

  .hero-logo {
    height: 150px;
    margin-bottom: 0.5rem;
  }
  
  .hero-tagline {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 26rem;
  }

  .hero-logo {
    height: 120px;
    margin-bottom: 0.5rem;
  }
  
  .hero-tagline {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}