/**
 * widgets-hero.css - Hero und Suchbereich (V2-Vorlage index_v17)
 */
.base-home-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.base-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.base-hero-search-focused {
  transform: scale(0.98);
  opacity: 0.9;
}

.base-hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.base-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-hero-badge-gradient-start), var(--color-hero-badge-gradient-end));
  border: 1px solid var(--color-hero-badge-border);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.base-hero-badge-icon {
  width: 16px;
  height: 16px;
}

.base-hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-gray-50);
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.base-quick-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
  .base-hero {
    padding: 100px 20px 40px;
  }
  .base-quick-suggestions {
    gap: 8px;
  }
}

.base-search-results-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/**
 * Vorlage briefing/vorlage/harley-james/index_v17.html: gleiche Maße wie base-hero, Klassennamen wie im Prototyp.
 */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-hero-badge-gradient-start), var(--color-hero-badge-gradient-end));
  border: 1px solid var(--color-hero-badge-border);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--color-anthracite);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
  color: var(--color-orange);
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-gray-50);
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px;
  }
}
