/* Modelle-Seite – individuelle Styles (Ergänzung zu style.css) */

/* Seitenhintergrund wie Index dunkel */
body {
  background: var(--color-bg-primary); /* tiefschwarz */
}

/* Hero kleiner Headerbereich */
.small-hero {
  min-height: 260px;
  background: url("/img/main_page/hero-lokus.png") center/cover no-repeat;
  position: relative;
}
.small-hero .hero-content h1 {
  color: var(--color-text-bright);
}
.small-hero .hero-content p {
  color: var(--color-text-dark);
}

/* Karten-/Kacheloptik für Modelle */
.model-list {
  display: grid;
  gap: 2rem;
}

.model-box {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: center;

  background: var(--dark); /* schwarzer Background */
  color: var(--color-text-dark); /* weißer Text */
  border: 2px solid var(--color-accent-primary); /* goldener Rahmen */
  border-radius: 22px;
  padding: 1.75rem;

  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25),
    0 14px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Bilder mit dezentem Rahmen / Anpassung */
.model-img img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.55);
  background: var(--color-bg-primary);
}

/* Typografie und Listen */
.model-content h2 {
  color: var(--color-text-bright);
  margin-top: 0;
}
.model-content p {
  color: var(--color-text-dark);
}

.facts {
  list-style: none;
  margin: 0.5rem 0 1.25rem 0;
  padding: 0;
}

.facts li {
  margin: 0.3rem 0;
  color: var(--color-text-dark);
  display: flex;
  align-items: flex-start;
}
.facts i {
  margin-top: 0.15rem;
  color: var(--color-accent-primary); /* Gold-Akzent */
  margin-right: 8px;
  width: 20px; /* feste Iconbreite = gleicher Textstart */
  text-align: center; /* Icon zentrieren */
  flex-shrink: 0; /* Icon wird nicht zusammengedrückt */
}

/* Container-Abstand nach oben/unten etwas größer */
.section.container {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .model-box {
    grid-template-columns: 1fr;
  }
  .model-img {
    order: -1;
  }
}
