/* ==========================================================================
   FONT-EINBINDUNG (Lokal)
   ========================================================================== */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('oswald-v57-latin-regular.woff2') format('woff2');
}

/* ==========================================================================
   BASIS & PRIVATSPHÄRE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Abstand für Sticky Header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION (Sticky & Rechts-Ausrichtung)
   ========================================================================== */
.main-header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo img {
    width: 40px;
    margin-right: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.nav-links a.active {
    color: #76a741;
}

/* MOBILE HAMBURGER BUTTON (Rechts mit Abstand) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #76a741;
    padding: 5px;
    line-height: 1;
    margin-left: auto; 
    margin-right: 5px; 
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin-bottom: 25px; }
}

/* ==========================================================================
   TYPOGRAFIE & FARBEN
   ========================================================================== */
main {
    padding: 40px 0;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    /* text-transform: uppercase; GELÖSCHT - Casing wird nun aus HTML übernommen */
    color: #333;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 15px;
}

/* „Mein Werdegang“ und Schwerpunkte-Überschriften in Grün */
h3 {
    color: #76a741; 
    font-size: 1.4rem;
    margin: 35px 0 15px 0;
}

/* „Körper, Geist und Seele“ in Grün */
.tagline {
    color: #76a741;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 20px 0 30px 0;
}

/* ==========================================================================
   BILDER & LISTEN
   ========================================================================== */
.hero-image {
    width: 100%;
    border-radius: 20px;
    display: block;
    margin-bottom: 30px;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    border: 1px solid #000;
    display: block;
    margin-bottom: 20px;
}

.career-list, .anchor-list {
    list-style-type: disc;
    margin-left: 20px;
}

.career-list li, .anchor-list li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.anchor-list a {
    text-decoration: none;
    color: #76a741;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    background-color: #fff;
    margin-top: 50px;
}

footer a {
    text-decoration: none;
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #76a741; /* Dein Marken-Grün */
}