/* Hero Component Styles - FlexNetJSX Architecture */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding-top: 80px; /* Account for fixed navigation */
}

/* Hero Image Container */
.hero-image-container {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 100%;
}

/* Hero Image */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Image Opacity Classes */
.hero-image-opacity-10 { opacity: 0.1; }
.hero-image-opacity-20 { opacity: 0.2; }
.hero-image-opacity-25 { opacity: 0.25; }
.hero-image-opacity-30 { opacity: 0.3; }
.hero-image-opacity-40 { opacity: 0.4; }
.hero-image-opacity-50 { opacity: 0.5; }
.hero-image-opacity-60 { opacity: 0.6; }
.hero-image-opacity-70 { opacity: 0.7; }
.hero-image-opacity-75 { opacity: 0.75; }
.hero-image-opacity-80 { opacity: 0.8; }
.hero-image-opacity-90 { opacity: 0.9; }
.hero-image-opacity-100 { opacity: 1; }

/* Hero Image Grayscale */
.hero-image--grayscale {
  filter: grayscale(100%);
}

/* Hero Image Brightness Classes */
.hero-image-brightness-25 { filter: brightness(0.25); }
.hero-image-brightness-50 { filter: brightness(0.5); }
.hero-image-brightness-75 { filter: brightness(0.75); }
.hero-image-brightness-100 { filter: brightness(1); }

/* Hero Text Container */
.hero-text-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Hero Text Overlay for better readability */
.hero-text-container::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  background: transparent;
  border-radius: var(--radius-lg);
  z-index: -1;
  backdrop-filter: blur(3px);
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 55vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

/* Hero Description */
.hero-description {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin: 0 auto 3rem;
  max-width: 600px;
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Hero Button Container */
.hero-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Hero Button */
.hero-button {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translateZ(0);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.hero-button:hover {
  transform: scale(1.02);
}

/* Hero Button Primary */
.hero-button--primary {
  background-color: #F4AA21;
  color: #000000;
}

.hero-button--primary:hover {
  background-color: #E69B1A;
}

/* Hero Button Secondary */
.hero-button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #F4AA21;
}

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

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-section {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .hero-text-container {
    padding: var(--spacing-lg);
  }
  
  .hero-title {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-subtitle {
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-description {
    font-size: var(--text-xs);
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-button {
    padding: var(--spacing-xs) var(--spacing-md);
  }
}

/* Focus states for accessibility */
.hero-button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Animation for hero content */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-container {
  animation: heroFadeInUp 0.8s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-text-container {
    animation: none;
  }
  
  .hero-button {
    transition: none;
  }
  
  .hero-button:hover {
    transform: none;
  }
} 