/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Hero Background Slider */
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgb(12, 10, 9);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 2.5s ease-in-out, transform 10s ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 1s ease;
}

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent, rgba(0, 0, 0, 0.6));
}

.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.3));
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-subheading {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: 'Gambetta', serif;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
  animation-delay: 100ms;
  letter-spacing: -0.025em;
  line-height: 1.1;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
}

.hero-description {
  max-width: 48rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.75;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
  animation-delay: 200ms;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
  animation-delay: 300ms;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}

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