/* Hero Component Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 1000ms ease-in-out;
  opacity: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 5000ms ease-out;
  transform: scale(1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: var(--color-primary-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.hero-content-inner {
  max-width: 56rem;
  margin: 0 auto;
  pointer-events: auto;
}

.hero-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 1;
  color: var(--color-primary-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

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

/* Desktop tagline - hidden on mobile */
.tagline-desktop {
  display: inline;
}

.tagline-mobile {
  display: none;
}

/* Mobile tagline - shown on mobile, hidden on desktop */
@media (max-width: 767px) {
  .tagline-desktop {
    display: none;
  }
  
  .tagline-mobile {
    display: inline;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-primary-white);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
}

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

.hero-title .line {
  white-space: nowrap;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem auto;
  opacity: 1;
  color: var(--color-primary-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

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

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

.hero-btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 300ms ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.hero-btn-primary {
  background-color: var(--color-accent-teal);
  color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border: 2px solid var(--color-accent-teal);
}

.hero-btn-primary:hover {
  background-color: #1d5555;
}

.hero-btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background-color: white;
  color: var(--color-accent-teal);
}

.hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 40;
}

.hero-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  transform: scale(1);
}

.hero-indicator:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.hero-indicator.active {
  background-color: white;
  transform: scale(1.25);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
} 