/* ========================================
   HERO COMPONENTS
   NO orange backgrounds - white/gray only
   ======================================== */

/* Base Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-white);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 var(--space-6) 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-8) 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-8) 0;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero with Background Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-overlay-light {
  background: rgba(255, 255, 255, 0.9);
}

.hero-overlay-dark {
  background: rgba(0, 0, 0, 0.7);
}

.hero-image .hero-title,
.hero-image .hero-subtitle,
.hero-image .hero-description {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image .hero-content {
  color: var(--text-white);
}

/* Hero with Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Hero with Gradient Background */
.hero-gradient {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
}

.hero-gradient-dark {
  background: linear-gradient(135deg, var(--bg-black) 0%, var(--text-primary) 100%);
  color: var(--text-white);
}

.hero-gradient-dark .hero-title,
.hero-gradient-dark .hero-subtitle,
.hero-gradient-dark .hero-description {
  color: var(--text-white);
}

/* Hero with Pattern Background */
.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f3f4f6' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Hero with Search */
.hero-search {
  margin-top: var(--space-8);
}

.hero-search .search-form {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

/* Hero with Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-light);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-2) 0;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Hero with Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.hero-feature {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.hero-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hero-feature-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gray-100);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.hero-feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-2) 0;
}

.hero-feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Hero with Testimonials */
.hero-testimonials {
  margin-top: var(--space-12);
  padding: var(--space-8) 0;
  background: var(--bg-gray-50);
  border-radius: var(--radius-lg);
}

.hero-testimonial {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-testimonial-quote {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-6) 0;
  font-style: italic;
}

.hero-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.hero-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.hero-testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.hero-testimonial-title {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero with CTA */
.hero-cta {
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: var(--bg-gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
}

.hero-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-4) 0;
}

.hero-cta-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 var(--space-6) 0;
}

.hero-cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero with Breadcrumb */
.hero-breadcrumb {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  z-index: 3;
}

.hero-breadcrumb .breadcrumb {
  margin: 0;
}

.hero-breadcrumb .breadcrumb a {
  color: var(--text-white);
}

.hero-breadcrumb .breadcrumb-separator {
  color: var(--text-white);
}

/* Hero with Navigation */
.hero-nav {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 3;
}

.hero-nav .nav-link {
  color: var(--text-white);
  font-weight: 500;
}

.hero-nav .nav-link:hover {
  color: var(--primary);
}

/* Hero with Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text-white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Hero Sizes */
.hero-sm {
  min-height: 50vh;
}

.hero-md {
  min-height: 75vh;
}

.hero-lg {
  min-height: 100vh;
}

.hero-xl {
  min-height: 120vh;
}

/* Hero Alignments */
.hero-left {
  text-align: left;
}

.hero-left .hero-actions {
  justify-content: flex-start;
}

.hero-right {
  text-align: right;
}

.hero-right .hero-actions {
  justify-content: flex-end;
}

/* Hero with Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  min-height: 100vh;
  padding: var(--space-8) 0;
}

.hero-split-content {
  padding: 0 var(--space-6);
}

.hero-split-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .hero-split-image {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 var(--space-4);
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-breadcrumb,
  .hero-nav {
    display: none;
  }
}
