/* ============================================
   Soccershop – Anlass Page Styles
   Layout fuer Anlassseiten (Teamausruestung, Turniere, etc.)
   ============================================ */

/* --- Anlass Hero --- */
.anlass-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent) 0%, #1A3FBF 100%);
  color: var(--color-white);
}

.anlass-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.anlass-hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.9;
}

.anlass-hero .label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.anlass-hero .hero__actions {
  margin-top: var(--space-lg);
}

.anlass-hero .btn.btn {
  display: inline-flex;
  width: auto;
  white-space: normal;
  text-align: center;
}

/* Hero-Button auf Weiss mit Akzent-Text (auf blauem Hintergrund) */
.anlass-hero .btn--primary {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.anlass-hero .btn--primary:hover {
  background-color: #E8EEFF;
  color: var(--color-accent-hover);
}

/* --- Anlass Problem (Frage-Section) --- */
.anlass-problem {
  padding: var(--space-xl) 0;
  text-align: center;
}

.anlass-problem h2 {
  max-width: 720px;
  margin: 0 auto var(--space-md);
  font-size: var(--size-h2);
}

.anlass-problem p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-muted);
}

/* --- Anlass Solution (Grid mit Loesungs-Cards) --- */
.anlass-solution {
  padding: var(--space-xl) 0;
}

.anlass-solution h2 {
  margin-bottom: var(--space-lg);
}

.anlass-solution .grid {
  gap: var(--space-md);
}

.solution-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.solution-card:hover {
  box-shadow: 0 8px 30px rgba(26, 31, 54, 0.08);
  transform: translateY(-4px);
}

.solution-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.solution-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.solution-card p {
  font-size: var(--size-small);
  color: var(--color-muted);
  line-height: 1.7;
}

/* --- Process Steps (1-2-3-4) --- */
.process-steps {
  padding: var(--space-xl) 0;
}

.process-steps h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-steps__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.process-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__content h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.process-step__content p {
  font-size: var(--size-small);
  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .process-steps__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .process-steps__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-step__number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
  }
}

/* --- Product Showcase --- */
.product-showcase {
  padding: var(--space-xl) 0;
}

.product-showcase h2 {
  margin-bottom: var(--space-lg);
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.product-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(26, 31, 54, 0.08);
  transform: translateY(-4px);
}

.product-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-bg);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  padding: var(--space-sm);
}

.product-card__body h3 {
  font-size: var(--size-small);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-card__body p {
  font-size: var(--size-label);
  color: var(--color-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .product-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
