/**
 * DRD Engineers Hero Section CSS
 * Matching Figma layout with Hero background slider & full-width CTA
 */

.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: var(--color-inverse-surface);
  color: #ffffff;
  overflow: hidden;
}

/* Background Image Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(25, 28, 29, 0.92) 0%, rgba(25, 28, 29, 0.75) 100%);
  z-index: 2;
}

.hero-bg-overlay-default {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero-content-full {
  max-width: 900px;
}

.hero-badge {
  margin-bottom: var(--space-4);
  background-color: rgba(244, 130, 31, 0.15);
  border-color: var(--color-primary-container);
  color: var(--color-primary-container);
}

.hero-title {
  font-size: 48px;
  line-height: 56px;
  color: #ffffff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-surface-dim);
  margin-bottom: var(--space-6);
}

.hero-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.hero-feature-list svg {
  color: var(--color-primary-container);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
