/* =================================================
   LEISTUNGEN.CSS – Manger Transporte GmbH & Co. KG 
   =================================================
 */

/* ===========================
   GRUNDLAYOUT
   =========================== */
.page--leistungen main {
  padding-bottom: 0px;
  animation: fadeInUp 0.7s ease both;
}

/* ===========================
   ACCORDION-SEKTIONEN
   =========================== */
.accordion {
  margin-bottom: 28px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accordion:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== SUMMARY-TITEL ===== */
.accordion summary {
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  color: var(--clr-accent);
  background: linear-gradient(90deg, #f7f9fc, #eef3fa);
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion summary:hover {
  background: linear-gradient(90deg, #edf3ff, #f8faff);
  color: var(--clr-accent-light);
}

/* ===== INHALTSBEREICH ===== */
.accordion .accordion-content {
  padding: 22px 26px 28px;
  background: var(--clr-bg-light);
  border-top: 1px solid var(--clr-border);
  line-height: 1.65;
}

/* ===== BILDER ===== */
.accordion img {
  display: block;
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 14px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

/* ===========================
   LINK ZUM MATERIALLAGER
   =========================== */

/* Link zum Materiallager NUR im Content */
.page--leistungen main a[href$="materiallager.html"] {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.2s ease;
}

.page--leistungen main a[href$="materiallager.html"]:hover {
  color: var(--clr-accent-light);
  text-shadow: 0 0 6px rgba(79, 139, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 900px) {
  .accordion img {
    max-width: 100%;
    margin: 10px auto 0;
  }

  .accordion summary {
    font-size: 1.05em;
    padding: 14px 18px;
  }

  .accordion .accordion-content {
    padding: 18px;
  }
}

@media (max-width: 600px) {

  .accordion {
    margin-bottom: 20px;
  }

  .accordion summary {
    font-size: 1em;
  }
}
