/* ============================================================
   HOFLADEN – Zusatz-Styles
   ============================================================ */

/* Hofladen Hero mit Hühner-Bild */
.page-hero--img {
  background: url('../images/hofladen.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3.5rem;
}
.page-hero--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,49,34,.52);
}
.page-hero--img .container {
  position: relative;
  z-index: 1;
}

/* FAQ Serifenlose Schrift */
.faq-title {
  font-family: var(--font-body) !important;
  font-style: normal;
}

/* Navigation verstecken */
.nav__list--hidden {
  display: none !important;
}

/* Öffnungszeiten-Bereich */
.hofladen-oeffnung__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.oeffnungszeiten-table {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,49,34,0.10);
}

.oeffnungszeiten-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,49,34,0.06);
  font-size: 0.95rem;
}

.oeffnungszeiten-row:last-child {
  border-bottom: none;
}

.oeffnungszeiten-hinweis { margin-top: 1rem; }
.sortiment .produkte-liste { margin-top: 2rem; }

.oeffnungszeiten-row--placeholder {
  background-color: rgba(255,186,87,0.08);
  font-style: italic;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.oeffnungszeiten-row .day {
  font-weight: 700;
  color: var(--color-dark);
}

.oeffnungszeiten-row .time {
  color: var(--color-green);
  font-weight: 700;
}

/* Vorbestellung Box */
.vorbestellung-box {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.vorbestellung-box__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vorbestellung-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.vorbestellung-box p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.vorbestellung-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vorbestellung-box .btn--outline-dark {
  color: var(--color-white);
  border-color: var(--color-white);
}

.vorbestellung-box .btn--outline-dark:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

/* Sortiment Header */
.sortiment__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.sortiment__header--reverse .sortiment__img {
  order: -1;
}

.sortiment__icon {
  font-size: 3.5rem;
  line-height: 1;
  padding-top: 0.5rem;
}

.sortiment__foto {
  width: 100%;
  min-height: 260px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(0,49,34,0.10);
  box-shadow: var(--shadow);
}

/* Produkte Liste */
.produkte-liste {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,49,34,0.10);
}

.produkt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,49,34,0.06);
  transition: background-color var(--transition);
}

.produkt-item:last-child {
  border-bottom: none;
}

.produkt-item:hover {
  background-color: rgba(141, 199, 79, 0.04);
}

.produkt-item--placeholder {
  background-color: rgba(0,49,34,0.02);
  font-style: italic;
  color: var(--color-text-light);
  font-size: 0.85rem;
  justify-content: center;
}

.produkt-item__info h4 {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.produkt-item__info p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.produkt-item__badge {
  background-color: rgba(141,199,79,0.15);
  color: var(--color-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Pakete Grid */
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.paket-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.paket-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.paket-card--seasonal {
  background-color: var(--color-creme);
  border: 2px solid var(--color-gold);
}

.paket-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.paket-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.paket-card__text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 1.25rem;
}

.paket-card__cta {
  margin-top: auto;
}

/* Google Maps */
.maps-section {
  padding: 3rem 0;
}

.maps-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 450px;
}

.maps-iframe {
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* Responsive Hofladen */
@media (max-width: 767px) {
  .hofladen-oeffnung__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sortiment__header {
    grid-template-columns: 1fr;
  }

  .sortiment__img {
    display: block !important;
    width: 100%;
    margin-top: 1rem;
  }

  .sortiment__foto {
    width: 100%;
    min-height: 250px;
    max-height: none;
    object-fit: cover;
  }

  .pakete-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .maps-iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .pakete-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-eier {
    padding: 1.5rem 1rem;
  }

  .hero-eier-img {
    max-height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pakete-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sortiment__header {
    grid-template-columns: 1fr;
  }

  .sortiment__img {
    display: block !important;
    width: 100%;
  }

  .sortiment__foto {
    width: 100%;
    min-height: 280px;
    max-height: none;
    object-fit: cover;
  }

  .maps-iframe {
    min-height: 400px;
  }
}
