/* ============================================================
   Baltz Widgets – Startseite Hero
   ============================================================ */

.hero-multi {
  padding: 5vw 1.5rem;
  background-color: var(--bg, #f8f9fa);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: 'Inter', sans-serif;
}

.hero-grid {
  max-width: var(--content-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary, #343a69);
  margin-bottom: 1rem;
}

.hero-text > p {
  font-size: 1.1rem;
  color: var(--subtext, #555);
  max-width: 36rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Mobile CTA button */
.hero-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary, #343a69);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s ease;
}

.hero-button-secondary:hover {
  opacity: 0.88;
  color: #fff;
}

.hero-button-secondary .button-icon {
  font-size: 1.1em;
}

/* Hide mobile button on desktop */
@media (min-width: 998px) {
  .hero-multi .mobile {
    display: none;
  }
}

/* Service cards */
.options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option-card {
  flex: 1;
  min-width: 240px;
  background: var(--card-bg, #fff);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text, #222);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  border: 1px solid #eee;
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--highlight, #FEA82F);
}

.option-card h2 {
  font-size: 1.1rem;
  color: var(--primary, #343a69);
  margin-bottom: 0.4rem;
}

.option-card p {
  font-size: 0.95rem;
  color: var(--subtext, #555);
  line-height: 1.5;
}

/* Hero illustration */
.hero-illustration {
  text-align: right;
}

.hero-illustration img {
  width: 80%;
  height: auto;
  border-radius: 20px;
  animation: baltz-hero-fadeIn 1s ease-out;
}

@keyframes baltz-hero-fadeIn {
  from { opacity: 0; transform: scale(1.01); }
  to   { opacity: 1; transform: scale(1); }
}

/* Tablet */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .options {
    justify-content: center;
  }

  .hero-illustration {
    order: -1;
    margin-bottom: 2rem;
    text-align: center;
  }

  .hero-illustration img {
    width: 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-multi {
    padding: 2rem 1rem;
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .options {
    display: none;
  }

  .hero-illustration img {
    border-radius: 12px;
    width: 70%;
  }
}
