/* ===========================
   Basis-Styles
=========================== */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #070000;
  margin: 0;
  padding: 0;
  background-color: #f3f5f6;
}

h1, h2, h3 {
  margin: 0 0 15px 0;
  color: #f9f5f8;
}

h4 {
  color: #130137;
}

p {
  margin: 0 0 15px 0;
  color: #feffff;
}

a {
  color: #130137;
  text-decoration: none;
}

a:hover {
  color: #050234;
  text-decoration: underline;
}

/* ===========================
   Header / Hero
=========================== */
header.hero {
  background-color: #1d0959;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

header.hero h1 {
  font-size: 2.5rem;
}

header.hero .claim {
  font-size: 1.2rem;
  color: #f4f4f5;
}

header.hero .intro {
  max-width: 800px;
  margin: 15px auto 0 auto;
  text-align: center;
}

/* ===========================
   Navigation
=========================== */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  background-color: #03033b;
  border-bottom: 2px solid #f7f9fb;
}

.main-nav a {
  font-weight: 500;
  color: #edeff1;
}

.main-nav a:hover {
  color: #aaaeb1;
}

/* ===========================
   Sections
=========================== */
.section {
  padding: 60px 20px;
}

.section-light {
  background-color: #F0F4F8;
}

/* ===========================
   Zentrierung Überschriften und Inhalte
=========================== */
#profil h2,
#ich h2,
#zielgruppe h2,
#kontakt h2,
#kooperationspartner h2,
#arbeitsweise h2,
#leistungen > h2,
.business-consulting > h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #130235;
}

#profil p,
#ich p,
#zielgruppe ul,
#kontakt ul,
#kooperationspartner ul,
#arbeitsweise ul {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #150131;
}

/* ===========================
   Profil Grid
=========================== */
.profil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 520px;
}

.profil-image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  display: block;
}

.profil-text {
  text-align: left;
}

/* ===========================
   Leistungen Grid
=========================== */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.leistung-column,
.business-column {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  color: #180941;
}

.leistung-column:hover,
.business-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.leistung-column h3,
.business-column h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #180941;
}

.leistung-column h3 small {
  display: block;
  font-weight: normal;
  font-size: 0.85em;
  margin-top: 4px;
  color: #180941;
}

.leistung-column ul,
.business-column ul {
  text-align: left;
  padding-left: 20px;
  color: #180941;
  line-height: 1.6;
}

/* ===========================
   Leistungen – Typo & Spacing Upgrade
=========================== */

/* Haupttitel in jeder Kachel */
.leistung-column h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

/* Beschreibungssatz unter Titel */
.leistung-column h4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #2a2a2a;
}

/* Listen */
.leistung-column ul {
  padding-left: 22px;
}

/* Einzelne Punkte */
.leistung-column ul li {
  margin-bottom: 14px;
  line-height: 1.65;
  font-size: 0.95rem;
  color: #2a2a2a;
}

/* Subheadline z.B. "Partner der HR Expertgroup" */
.leistung-column h5 {
  margin-top: 26px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1d1d1d;
}

/* Link-Zeile */
.leistung-column a,
.leistung-column h5 + p {
  font-size: 0.9rem;
  color: #444;
}
.leistung-column {
  border: 1px solid rgba(0,0,0,0.04);
}


/* Arbeitsweise spezielle Profilbilder */
#arbeitsweise .profil-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#arbeitsweise .profil-image img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: block;
}

/* ===========================
   Business Consulting Grid
=========================== */
/* ===========================
   Business Consulting Grid & Wrapper
=========================== */
.business-wrapper {
  background-color: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  max-width: 1200px;
  margin: 60px auto 0 auto;
}

.business-wrapper h3 {
  text-align: center;       /* Titel zentrieren */
  margin: 0 auto 35px auto; /* Abstand unten + horizontal zentriert */
  max-width: 800px;         /* angenehme Zeilenbreite */
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #130235;
}

.business-intro {
  text-align: center;       /* Text zentrieren */
  margin: 0 auto 55px auto; /* Abstand oben/unten + horizontal zentriert */
  max-width: 880px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #1f1f1f;
}

/* Grid für Business Columns */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* flexibel & responsive */
  gap: 50px;
  justify-items: center;  /* Boxen horizontal zentrieren */
}

/* Jede Business Column */
.business-column {
  text-align: left;       /* Inhalt linksbündig */
  max-width: 500px;       /* Boxenbreite begrenzen */
  margin: 0 auto;         /* Box selbst horizontal zentrieren */
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.business-column h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.4;
  color: #180941;
}

.business-column ul {
  padding-left: 22px;
  line-height: 1.65;
  font-size: 0.95rem;
  color: #2a2a2a;
}

.business-column ul li {
  margin-bottom: 14px;
}

/* ===========================
   Business Consulting – Typo & Spacing Upgrade
=========================== */

/* Haupttitel */
.business-wrapper h3 {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

/* Spaltenüberschrift (z.B. Strategie, Wachstum & Transformation) */
.business-column h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Listen */
.business-column ul {
  padding-left: 22px;
}

/* Einzelne Aufzählungspunkte */
.business-column ul li {
  margin-bottom: 14px;     /* mehr Luft zwischen Bulletpoints */
  line-height: 1.65;
  font-size: 0.95rem;
  color: #2a2a2a;
}

/* Extra Abstand zwischen den beiden Spalten */
.business-grid {
  gap: 50px;
}
.business-intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 55px auto;
  color: #1f1f1f;
  line-height: 1.7;
  font-size: 1.05rem;
}


/* ===========================
   Listen ohne Bullets
=========================== */
#kontakt ul,
#kooperationspartner ul,
#arbeitsweise ul,
#zielgruppe ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

#kontakt ul li,
#kooperationspartner ul li,
#arbeitsweise ul li,
#zielgruppe ul li {
  margin-bottom: 10px;
}

/* ===========================
   Kontaktbereich Split Layout (50/50)
=========================== */
#kontakt {
  padding: 0;
}

.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.kontakt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

/* ===========================
   Spezielles Kontaktbild kleiner
=========================== */
.kontakt-image img[src="img/profil-marcus-mauch-2.jpg"] {
  max-width: 600px;  /* gewünschte Breite */
  height: auto;      /* proportional skalieren */
  display: block;
  margin: 0 auto;     /* horizontal zentrieren */
}

/* Optional: Container als Flexbox zentrieren */
.kontakt-image {
  display: flex;
  justify-content: center;  /* horizontal zentrieren */
  align-items: center;      /* vertikal zentrieren, falls Höhe vorhanden */
}

.kontakt-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===========================
   Footer
=========================== */
.footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #03033b;
  color: #fcf9f9;
  font-size: 0.9rem;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 992px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-grid,
  .profil-grid {
    grid-template-columns: 1fr;
  }
  .leistung-column img,
  .business-column img {
    max-width: 100px;
  }
  .profil-image img,
  .kontakt-image img {
    max-width: 180px;
  }
}

@media (max-width: 900px) {
  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }
  .kontakt-image img {
    height: 300px;
  }
  .kontakt-text {
    padding: 40px 25px;
  }
  #profil .profil-grid {
    grid-template-columns: 1fr;
  }
  #profil .profil-image img {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-grid,
  .profil-grid {
    grid-template-columns: 1fr;
  }
  .leistung-column img,
  .business-column img {
    max-width: 80px;
  }
  .profil-image img,
  .kontakt-image img {
    max-width: 150px;
  }
}

/* ===========================
   Wer ich bin – hochwertiger Textblock
=========================== */
#ich p {
  max-width: 820px;              /* angenehme Lesebreite */
  margin: 0 auto 24px auto;      /* zentriert + Absatzabstand */
  padding: 0 20px;               /* Luft links & rechts */
  text-align: justify;           /* blockähnlich */
  text-align-last: center;       /* letzte Zeile ruhiger */
  line-height: 1.8;              /* bessere Lesbarkeit */
  color: #180941;
}
@media (max-width: 600px) {
  #ich p {
    text-align: left;       /* auf Mobile besser lesbar */
    padding: 0 16px;
  }
}
/* ===========================
   VOLTEC Header – hochwertiger Textblock
=========================== */
header.hero .intro {
  max-width: 820px;
  margin: 20px auto 24px auto;
  padding: 0 20px;
  text-align: justify;
  text-align-last: center;
  line-height: 1.8;
  color: #f4f4f5;
}

/* Claim-Zeile feiner & gesetzter */
header.hero .claim {
  letter-spacing: 0.12em;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Ruhig. Strukturiert. Wirksam. */
header.hero h5 {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.14em;
  margin-top: 10px;
  color: #e6e6e8;
}
@media (max-width: 600px) {
  header.hero .intro {
    text-align: left;
    padding: 0 16px;
  }
}
/* Nur Schriftgewicht anpassen – keine neue Schriftart */

/* Hauptüberschrift */
header.hero h1 {
  font-weight: 500;   /* vorher vermutlich 600/700 */
}

/* Claim */
header.hero .claim {
  font-weight: 400;
}

/* Ruhig. Strukturiert. Wirksam. */
header.hero h5 {
  font-weight: 400;
}

/* ===========================
   ELEGANTER MASTER-TYPO-STIL
=========================== */

/* Fließtexte */
body,
p,
li,
.business-intro,
.kontakt-text {
  color: #130244;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Große Überschriften */
h1, h2 {
  font-weight: 500;
  letter-spacing: 0.6px;
}

/* Mittlere Überschriften */
h3, h4, h5 {
  font-weight: 400;
  letter-spacing: 0.4px;
}

/* Hero Claim */
header.hero .claim {
  font-weight: 400;
  letter-spacing: 0.8px;
}

/* Abschlusszeile im Hero */
header.hero h5 {
  font-weight: 400;
  letter-spacing: 1px;
}

/* Listen ruhiger */
ul li {
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Links elegant */
a {
  font-weight: 400;
}
p {
  line-height: 1.75;
}
/* ===========================
   GROSSE SEKTIONSÜBERSCHRIFTEN
=========================== */

#profil h2,
#ich h2,
#leistungen > h2,
#zielgruppe h2,
#arbeitsweise h2,
#kontakt h2,
#kooperationspartner h2 {
  font-size: 2.2rem;        /* größer */
  font-weight: 500;        /* klar, nicht fett */
  letter-spacing: 1px;     /* elegant */
  margin-bottom: 40px;     /* mehr Luft nach unten */
  color: #130235;
}
@media (max-width: 600px) {
  #profil h2,
  #ich h2,
  #leistungen > h2,
  #zielgruppe h2,
  #arbeitsweise h2,
  #kontakt h2,
  #kooperationspartner h2 {
    font-size: 1.8rem;
  }
}
.footer p {
  color: #ffffff;
}

/* ===========================
   Bild füllt gesamte Kartenbreite
=========================== */

.leistung-column {
  padding: 0;                 /* kein Innenabstand für Kachel */
  overflow: hidden;
}

/* Bild ganzflächig */
.leistung-column .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;

  /* WICHTIG: Bild über volle Kachel ziehen */
  margin: 0;
  padding: 0;
  border-radius: 12px 12px 0 0;
}

/* Text bekommt wieder Luft */
.leistung-column h3,
.leistung-column h4,
.leistung-column ul,
.leistung-column h5 {
  padding: 0 22px;
}
/* ===========================
   LEISTUNGEN: Bild über volle Kartenbreite oben
=========================== */

/* Kachel sauber */
.leistung-column {
  padding: 0;
  overflow: hidden;
}

/* Titel-Row als Stack */
.leistung-title-row {
  display: flex;
  flex-direction: column;
}

/* Bild */
.leistung-title-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 12px 12px 0 0;
}

/* Titel unter Bild */
.leistung-title-row h3 {
  padding: 22px 22px 10px 22px;
}

/* Restlicher Inhalt */
.leistung-column h4,
.leistung-column ul,
.leistung-column h5 {
  padding: 0 22px 22px 22px;
}
/* Business Consulting – Spaltenüberschriften zentrieren */
.business-column h4 {
  text-align: center;
}
