/* ===========================
   LAYOUT.CSS – Struktur & Utilities
   Manger Transporte GmbH & Co. KG (Premium 2025)
   =========================== */

/* ===== SEITENABSCHNITTE ===== */
.start-section {
  max-width: 1000px;
  margin: 80px auto;
  background: var(--clr-bg-light);
  border-radius: var(--radius);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.start-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.start-section h3 {
  color: var(--clr-accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.start-section p {
  color: var(--clr-text);
  line-height: 1.6;
}

/* ===========================
   FLEX-LAYOUT (Global Utility)
   =========================== */
.flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-col {
  flex: 1;
  min-width: 280px;
}

/* MOBILE-ANPASSUNG */
@media (max-width: 700px) {
  .flex-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===========================
   BUTTONS & INLINE-LINKS
   =========================== */
.btn {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: var(--clr-accent-light);
  transform: translateY(-1px);
}

/* Inline-Link (z. B. → Mehr erfahren) */
.link-inline {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, text-underline-offset 0.2s;
}
.link-inline:hover {
  color: var(--clr-accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   BILDER (Allgemein)
   =========================== */
img.responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img.responsive:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 900px) {
  .start-section {
    padding: 22px 20px;
  }
}
@media (max-width: 600px) {
  .start-section {
    margin: 55px auto;
    padding: 20px 18px;
  }
}
