/* ==========================================
   INDEX.CSS - LANDING PAGE (OPTIMIERT)
   ========================================== */

/* ==========================================
   1. HERO SECTION
   ========================================== */

 
.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
  position: relative;
  background: var(--gradient-accent-primary-hover);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35em;
  height: 3px;
  background: var(--gradient-accent-primary-hover);
}

@media (max-width: 890px) {
  .highlight::after {
    display: none;
    content: none;   /* optional, aber schadet nicht */
    height: 0;       /* optional */
  }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ==========================================
   PROBLEM SECTION (Index only)
   ========================================== */

.problem-conclusion {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
}

.problem-conclusion strong {
  color: var(--color-text-primary);
}

/* ==========================================
   RESPONSIVE: Mobile (bis 768px)
   ========================================== */

@media (max-width: 768px) {
  
  .hero-content-center h1 {
      font-size: 2rem;
      line-height: 1.3;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .hero-meta {
      flex-direction: column;
      gap: 0.75rem;
      align-items: stretch;
  }
  
  .meta-item {
      justify-content: center;
  }
}

@media (max-width: 480px) {
    .hero-content-center h1 {
        font-size: 1.75rem;
    }
}
    
