.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  margin-top: -35vh;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.hero-logo {
  height: 4rem;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .hero-logo {
    height: 5rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  opacity: 0.9;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-button-primary {
  background-color: var(--primary);
  color: white;
}

.hero-button-primary:hover {
  background-color: var(--primary-dark);
}

.hero-button-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
}

.scroll-text {
  color: white;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.scroll-icon {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid white;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: white;
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: bounce 1s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
} 