/* Globale Einstellungen und Reset */
:root {
    --primary-color: #0056b3; /* Dunkles Blau, oft für Universitäten */
    --secondary-color: #e0e0e0; /* Hellgrau für Hintergründe */
    --text-color: #333;
    --heading-color: #1a1a1a;
    --link-color: #007bff;
    --accent-color: #ffc107; /* Akzentfarbe, z.B. für Hover-Effekte */

    --font-serif: 'Merriweather', serif;
    --font-sans: 'Roboto', sans-serif;
    --font-tangerine: 'Tangerine', cursive; /* Für Sinnspruch */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Mindesthöhe des Bodys für Footer am Ende */
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--heading-color);
    margin-top: 0;
}

/* Header-Bereich */
.site-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-content {
    max-width: 1000px; /* Maximale Breite des Inhalts */
    margin: 0 auto;
    padding: 0 20px; /* Horizontales Padding für den Header-Inhalt */
}

.profile-section {
    display: flex;
    flex-direction: column; /* Standard auf kleinem Bildschirm */
    align-items: center; /* Zentriert die Elemente */
    gap: 20px; /* Abstand zwischen Bild und Text */
}

.profile-photo {
    width: 150px; /* Größe des Fotos */
    height: 150px;
    border-radius: 50%; /* Macht das Foto rund */
    object-fit: cover; /* Stellt sicher, dass das Bild den Kreis ausfüllt */
    border: 4px solid white; /* Weißer Rand um das Foto */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.header-text h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.header-text h2 {
    color: #e0e0e0; /* Hellerer Ton für den Untertitel */
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
}

.header-text address {
    font-style: normal; /* Entfernt die Kursivschrift von <address> */
    font-size: 0.95em;
    line-height: 1.4;
}

.header-text .email-link {
    color: white;
    text-decoration: underline;
    /* NEU: Abstand nach unten für den E-Mail-Link */
    margin-bottom: 15px; /* Du kannst diesen Wert nach Belieben anpassen */
    display: inline-block; /* Wichtig, damit margin-bottom angewendet wird */
}

.header-text .email-link:hover {
    color: var(--accent-color);
}

/* Navigation */
.main-navigation {
    background-color: #003f80; /* Etwas dunkler als der Header-Hintergrund */
    padding: 10px 0;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Standard: Menüpunkte untereinander auf Mobil */
    align-items: center; /* Zentriert auf Mobil */
    gap: 10px; /* Abstand zwischen den Menüpunkten */
}

.main-navigation a {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-navigation a:hover {
    background-color: var(--primary-color);
}

/* Hauptinhaltsbereich */
.main-content {
    flex-grow: 1; /* Lässt den Inhalt den verfügbaren Platz einnehmen */
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px; /* Dieser Wert gibt den Abstand des gesamten Blocks zum Rand */
    background-color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Anpassung für Überschriften und Absätze im Portrait-Bereich */
.portrait-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Horizontaler Innenabstand für die Überschrift */
    padding-right: 20px; /* Horizontaler Innenabstand für die Überschrift */
}

.portrait-section h3 {
    text-align: center;
    margin-bottom: 1px;
    font-size: 1.4em;
    padding-bottom: 10px;
    /* border-bottom: 2px solid var(--primary-color);*/
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Horizontaler Innenabstand für die Überschrift */
    padding-right: 20px; /* Horizontaler Innenabstand für die Überschrift */
}

.portrait-section p {
    text-align: justify;
    margin-bottom: 1em;
    font-family: var(--font-sans);
    padding: 0 20px; /* Horizontaler Innenabstand für den Text */
}

/* Sinnspruch-Bereich */
.quote-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    text-align: center;
}

.sinnspruch {
    font-family: var(--font-tangerine);
    font-size: 3.5em; /* Große Schriftgröße für Tangerine */
    line-height: 1.2;
    margin: 0;
    color: var(--heading-color);
}

.sinnspruch-quelle {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

/* Footer-Bereich */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px; /* Abstand zum Inhalt */
    font-size: 0.9em;
}

/* --- Schwebender Pfeil zum Scrollen --- */
#scrollDownArrow { /* Beachte, dass die ID 'scrollDownArrow' ist */
    position: fixed; /* Fixiert den Pfeil im Viewport */
    bottom: 20px;    /* 20px vom unteren Rand */
    right: 20px;     /* 20px vom rechten Rand */
    background-color: var(--primary-color); /* Hintergrundfarbe des Pfeils */
    color: white;    /* Farbe des Pfeils */
    width: 50px;     /* Breite des Pfeils */
    height: 50px;    /* Höhe des Pfeils */
    border-radius: 50%; /* Macht den Button rund */
    display: flex;   /* <-- Dies ist entscheidend: Macht den Pfeil sichtbar */
    justify-content: center; /* Zentriert des Pfeilzeichens */
    align-items: center;     /* Zentriert vertikal */
    font-size: 2em;  /* Größe des Pfeilzeichens */
    text-decoration: none; /* Keine Unterstreichung des Links */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Kleiner Schatten */
    z-index: 1000;   /* Stellt sicher, dass er über anderen Elementen liegt */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Sanfte Übergänge beim Hover */
    cursor: pointer; /* Zeigt an, dass es klickbar ist */
}

#scrollDownArrow:hover {
    background-color: var(--accent-color); /* Farbe beim Hover */
    transform: translateY(5px); /* Kleiner "Hüpf"-Effekt beim Hover (nach unten) */
}

/* Optional: Pfeil ausblenden, wenn die Seite sehr kurz ist oder auf bestimmten Breakpoints */
@media (max-height: 600px) { /* Beispiel: Ausblenden auf sehr kleinen Bildschirmen/Ansichten */
    #scrollDownArrow {
        display: none !important; /* !important, um JS-Display-Änderungen zu überschreiben, falls nötig */
    }
}

/* --- Responsive Anpassungen --- */
@media (min-width: 768px) {
    .profile-section {
        flex-direction: row; /* nebeneinander auf größeren Bildschirmen */
        justify-content: center; /* Zentriert horizontal */
        text-align: left; /* Text linksbündig */
    }

    .header-text {
        text-align: left; /* Überschriften linksbündig */
    }

    .main-navigation ul {
        flex-direction: row; /* Menüpunkte horizontal */
        justify-content: center; /* Menüpunkte zentrieren */
    }

    .sinnspruch {
        font-size: 4.5em; /* Noch größer auf Desktops */
    }
}

@media (min-width: 1024px) {
    .header-content, .main-content {
        /* Hier sind die 20px Padding in .main-content immer noch wirksam,
           aber auf sehr großen Bildschirmen bleibt die max-width dominant. */
    }
}

