.lavishly-yours-regular {
  font-family: "Lavishly Yours", cursive;
  font-weight: 400;
  font-style: normal;
}

.the-nautigal-regular {
  font-family: "The Nautigal", cursive;
  font-weight: 400;
  font-style: normal;
}

.the-nautigal-bold {
  font-family: "The Nautigal", cursive;
  font-weight: 700;
  font-style: normal;
}

/* Body wie Startseite, plus weißer Hintergrund */
body {
  margin: 0;
  padding: 10px;
  color: #2b324d !important;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

/* Grundfarben der Überschriften wie auf index */
h1 {
  color: #2b324d;
  font-weight: 700;
}

h2 {
  color: #be9e44;
  font-weight: 600;
}

/* Global: alles zunächst zentriert, wie auf index */
h1,
h2,
h3,
p,
ul,
li {
  text-align: center;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Globale Korrektur: h1 & h2 immer zentriert und responsive */
h1,
h2 {
  width: 100% !important; /* statt fixer Breite */
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto 16px auto !important; /* zentriert mit Abstand nach unten */
  text-align: center !important;
  box-sizing: border-box;
}

/* Feintuning Unter-Überschriften */
h3 {
  color: #2b324d;
}

/* Fließtext – bleibt zentriert, aber begrenzt in der Breite über .content-wrap */
p {
  line-height: 1.6;
}

/* Standard-Listen – Startseite regelt die Ausrichtung über .content-wrap & #leistungen,
   daher hier nur Basisline-height */
ul {
  line-height: 1.55;
}

li {
  margin: 0 0 0.5rem 0;
}

/* Mobile Optimierung für Überschriften – wie index */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem !important;
  }
  h2 {
    font-size: 1.2rem !important;
  }
  h3 {
    font-size: 1rem;
  }
  p,
  li {
    font-size: 0.95rem;
  }
}

/* ===== Spezifische Elemente Über-mich (deine bisherigen Styles) ===== */

.gedanken {
  font-weight: 700;
  font-size: 20px;
  padding: 5px;
  color: #be9e44;
}

.kunden-helfen {
  margin: 0;
  font-size: 1.2rem;
  color: #2b324d;
}

.kunden-helfen-anders {
  margin: 0;
  font-size: 1.2rem;
  color: #2b324d !important;
  font-weight: 700;
}

.coach-beraterin {
  margin: 0;
  font-size: 1.2rem;
  color: #2b324d;
}

.linkedin-icon,
.ig-icon {
  max-height: 39px;
  max-width: 39px;
  padding: 4px;
}

.social-media-icons {
  width: 20%;
  margin-left: 43%;
  margin-right: 30%;
  margin-top: 10px;
}

/* Leitsatz mit Scroll-Animation */
.leitsatz {
  font-weight: 400;
  font-size: 25px;
  color: #be9e44;
  max-width: 980px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.leitsatz.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA-Button (Brandfarben) */
.btn-primary {
  background-color: #0e2769 !important;
  border-color: #0e2769 !important;
  color: #b3975a !important;
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #081846 !important;
  border-color: #081846 !important;
  color: #d4b878 !important;
  transform: translateY(-3px);
}

/* Leistungen (wird auch auf anderen Seiten genutzt) */
#leistungen h2 {
  color: #0a1633;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

#leistungen h3 {
  color: #b3975a;
  font-weight: 700;
  margin-top: 1.75rem;
  text-transform: uppercase;
}

#leistungen img {
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  display: block;
}

#leistungen ul {
  list-style-type: disc !important;
  list-style-position: outside;
  padding-left: 1.1rem;
  margin: 0 auto 1rem;
  max-width: 820px;
  text-align: left;
}

#leistungen ul li {
  position: static !important;
  padding-left: 0 !important;
  margin: 0 0 10px;
  color: #444;
}

/* Entfernt pseudo-Icons endgültig */
#leistungen ul li::before {
  content: none !important;
}

/* Social Footer */
footer.social-footer {
  background-color: #f8f9fa;
  padding: 20px;
  font-family: sans-serif;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.social-icons a {
  text-decoration: none;
  font-size: 2rem;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.fa-linkedin {
  color: #0a66c2;
}

.fa-instagram {
  color: #e1306c;
}

.impressum-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  text-decoration: underline;
}

/* Grundlayout: Inhalte mittig & besser lesbar */
.content-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}

.centered {
  text-align: center;
}

/* Abstände */
.spacer-sm {
  margin-top: 12px;
}
.spacer-md {
  margin-top: 24px;
}
.spacer-lg {
  margin-top: 40px;
}

/* Bilder mittig & responsiv */
.img-center {
  display: block;
  margin: 0 auto;
}

.header-sabine {
  max-width: 980px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Typografie innerhalb content-wrap – wie index */
.content-wrap h1,
.content-wrap h2,
.content-wrap h3,
.content-wrap p {
  margin-left: auto;
  margin-right: auto;
}

.content-wrap h1 {
  font-size: 2rem;
  font-weight: 800;
}

.content-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.content-wrap h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Listen lesbar (links ausgerichtet), aber Block mittig */
.content-wrap ul {
  max-width: 820px;
  margin: 0 auto 1rem auto;
  text-align: left;
  line-height: 1.55;
}

/* Listen: einheitlich Punkte, links ausgerichtet – Block mittig */
.content-wrap ul,
#leistungen ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.1rem;
  margin: 0 auto 1rem auto;
  max-width: 820px;
  text-align: left;
  line-height: 1.55;
}

.content-wrap ul li,
#leistungen ul li {
  position: static;
  padding-left: 0;
  margin: 0 0 10px 0;
  color: #444;
}

/* CTA-Button in Sektionen */
#cta .btn.btn-primary,
#cta-bottom .btn.btn-primary {
  background-color: #0e2769 !important;
  border-color: #0e2769 !important;
  color: #b3975a !important;
  font-size: 1.125rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

#cta .btn.btn-primary:hover,
#cta-bottom .btn.btn-primary:hover {
  background-color: #0b2056 !important;
  border-color: #0b2056 !important;
  color: #d9c18a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

/* Navbar: Menü mittig auf größeren Screens */
.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

/* Über-Header-Text */
.under-header {
  color: #0a1633;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Werte-Grid – responsiv */
.werte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 20px auto 0;
}

.wert {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.wert h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #0a1633;
}

.wert p {
  margin: 0;
}

/* Werdegang-Spalten */
#werdegang {
  text-align: center;
  margin: 40px auto;
}

#werdegang h3 {
  color: #0e2769;
  margin-bottom: 16px;
}

#werdegang .qualifikation {
  font-size: 16px;
  margin: 6px 0;
}

.werdegang-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.werdegang-block {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Legal-Links */
.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.legal-links .impressum-link {
  color: #0e2769;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.legal-links .impressum-link:hover {
  color: #501b5f;
  text-decoration: underline;
}

/* Skip-Link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
}

.skip-to-content:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid #0e2769;
  border-radius: 10px;
}

/* Responsive Feintuning Werte & Werdegang */
@media (max-width: 768px) {
  .werte-grid {
    grid-template-columns: 1fr;
  }
  .werdegang-columns {
    grid-template-columns: 1fr;
  }
}

/* Kleiner Typografie-Feinschliff auf mittleren Breakpoints – wie index */
@media (max-width: 992px) {
  .content-wrap h1 {
    font-size: 1.7rem;
  }
  .content-wrap h2 {
    font-size: 1.25rem;
  }
  .content-wrap h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .content-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  p,
  li {
    font-size: 0.95rem;
  }
}
