/* style.css - Jürgen Meyer-Stolte Universal Styles */

:root {
    --dark-blue: #0a192f;
    --silver: #cbd5e1;
    --accent-silver: #94a3b8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* 1. RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* 2. HEADER & LOGO */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
}

.logo-link {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.logo-link:hover {
    color: var(--silver);
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.focus-tag {
    font-size: 0.8rem;
    color: var(--accent-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 3. CONTENT PAGE LAYOUT */
.content-page {
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--silver);
}

.content-page p {
    margin-bottom: 1.2rem;
    color: var(--accent-silver);
}

/* Links innerhalb der Inhaltsseiten (inkl. E-Mail) */
.content-page a {
    color: var(--white) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.content-page a:hover {
    color: var(--silver) !important;
    border-bottom: 1px solid var(--white);
}

/* 4. PROFILSEITE: EINLEITUNG */
.profile-page h1 {
    margin-bottom: 1.25rem;
}

.profile-intro {
    max-width: 760px;
    margin: 0 0 4rem 0;
}

.profile-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--white) !important;
    margin-bottom: 1.75rem !important;
}

.profile-intro p {
    margin-bottom: 1.25rem;
}

.profile-question-intro {
    margin-bottom: 0.4rem !important;
}

.profile-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--white) !important;
    margin-bottom: 1.75rem !important;
}

.additional-mandates {
    margin-top: 0.5rem;
}

/* 5. PROFIL-GRID */
.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 4rem;
    align-items: start;
}

.main-content {
    width: 100%;
}

/* 6. SIDEBAR DETAILS */
.sidebar h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-silver);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
    padding-bottom: 0.5rem;
}

.sidebar p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--accent-silver);
}

/* 7. REFERENZEN / EXPERTISE */
.reference-item {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(203, 213, 225, 0.2);
    color: var(--accent-silver);
}

.reference-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
}

/* 8. FOOTER */
footer {
    padding: 3rem 5%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent-silver);
    border-top: 1px solid rgba(203, 213, 225, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--accent-silver);
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer-links a:hover {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}

.footer-links a.active {
    color: var(--white);
    font-weight: 700;
    pointer-events: none;
    cursor: default;
    border-bottom: 1px solid var(--white);
}

/* 9. RESPONSIVITY (Handy & Tablet) */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .content-page {
        padding: 3rem 6%;
    }

     .content-page h1 {
         line-height: 1.2;
         max-width: 720px;
    }

    .profile-intro {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .profile-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.4rem !important;
    }

    .profile-question {
        font-size: 1.35rem;
        margin-bottom: 1.4rem !important;
    }

    .profile-intro p,
    .sidebar p {
        font-size: 1rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}