/* ============================================================
   MOBILE-FIX 2026-04-20 — User-Feedback Mike
   1) Logo größer (war 40px, sehr klein)
   2) Burger-Menü konsequent rechts (war zentriert)
   3) Hero-Bild zentrieren statt left-cropped (zweite Frau wurde abgeschnitten)
   Datei wird über includes/head-meta.php nach style.css geladen.
============================================================ */

@media (max-width: 768px) {
  /* Header-Höhe erhöhen damit Logo (80px) Platz hat */
  :root { --header-height: 128px !important; }
  .header { height: 128px !important; }

  /* --- 1) LOGO GRÖßER --------------------------------------- */
  .header__logo-img {
    height: 112px !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 340px;
  }

  /* --- 2) BURGER NACH RECHTS -------------------------------- */
  .header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
  }
  .mobile-menu-btn {
    margin-left: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) !important;
  }
  .mobile-menu-btn svg {
    width: 32px !important;
    height: 32px !important;
  }

  /* --- 3) HERO-BILD ZENTRIEREN STATT LEFT-CROPPED ----------- */
  .hero__bg-image img,
  .hero--premium .hero__bg-image img {
    object-fit: cover !important;
    object-position: center 30% !important;
  }
  /* Mobile: Bild oben, Text drunter — kein Gradient-Overlay verstecken */
  .hero--premium .hero__bg-image {
    position: relative !important;
    width: 100% !important;
    right: auto !important;
    left: auto !important;
    height: 50vh !important;
    min-height: 320px !important;
    max-height: 420px !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
    border-radius: 0;
    overflow: hidden;
  }
  .hero--premium .hero__bg-image::after {
    display: none !important;
  }
  .hero--premium {
    display: flex !important;
    flex-direction: column !important;
    padding-top: var(--header-height) !important;
    padding-bottom: var(--space-6) !important;
    min-height: auto !important;
  }
  .hero--premium .hero__inner {
    padding: var(--space-3) var(--space-5) 0 !important;
    margin-top: 0 !important;
  }
  /* Title etwas kleiner damit es nicht überläuft */
  .hero--premium .hero__title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.1 !important;
  }
}

/* Sehr schmales Mobile (≤480px): Logo nochmal kompakter */
@media (max-width: 480px) {
  :root { --header-height: 108px !important; }
  .header { height: 108px !important; }
  .header__logo-img {
    height: 88px !important;
    max-width: 280px;
  }
  .hero--premium .hero__bg-image {
    height: 40vh !important;
    min-height: 260px !important;
  }
}
