/* ==========================================================================
   STARTSEITE – Manger Transporte GmbH & Co. KG (Premium Unified Version)
   ==========================================================================
 */

/* ===== SEITENLABEL ===== */
.page-label {
  text-align: center;
  color: var(--clr-muted);
  font-weight: 500;
}
/* ===== SLOGAN (wird automatisch per header.js eingefügt) ===== */
.slogan-section {
  text-align: center;
  margin: 30px 0 0px;
  animation: fadeInUp 0.8s ease;
}

.slogan-minimal {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #111;
}

.slogan-minimal span {
  background: linear-gradient(90deg, #000, var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slogan-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--clr-muted);
  margin-top: 8px;
  letter-spacing: 0.3px;
}


/* ===== SEKTIONSBOXEN ===== */
.start-section {
  max-width: 1000px;
  margin: 0px auto 40px;
  padding: 30px;
  background: var(--clr-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.start-section:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.start-section h3 {
  color: var(--clr-accent);
  margin-bottom: 12px;
  font-size: 1.35em;
}

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

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

/* ===== LINKS / INLINE-BUTTONS ===== */
.start-section a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.start-section a:hover {
  color: var(--clr-accent-light);
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .start-section {
    margin: 45px 15px;
    padding: 22px;
  }
  .flex-row {
    flex-direction: column;
    text-align: center;
  }
  .start-section img {
    max-width: 90%;
    margin: 0 auto;
  }
}


/* ===========================
   FIX: Button-Text auf der Startseite sichtbar halten
   =========================== */
.page--start a.btn,
.page--start a.btn-glow {
  background: var(--clr-accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page--start a.btn:hover,
.page--start a.btn-glow:hover {
  background: var(--clr-accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}



