/* GRUNDSTYLING */
:root {
    /* Farbpalette */
    --color-primary: #3c4043; /* Dunkles Grau für Text/Akzente */
    --color-secondary: #7f8c8d; /* Helles Grau für Details/Hintergrund */
    --color-background: #ffffff;
    --color-light-background: #f4f4f4; /* Sehr heller Hintergrund für Sektionen */
    --color-text: #333;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* TYPOGRAPHIE */
h1, h2 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--color-light-background);
    padding-bottom: 0.5rem;
    display: inline-block; /* Für die horizontale Linie */
}

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

a:hover {
    color: #007bff; /* Ein professionelles Blau als Hover-Effekt */
    text-decoration: underline;
}

/* LAYOUT UND STRUKTUR */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.main-header {
    background-color: var(--color-light-background);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.language-switch a {
    font-size: 1rem;
    padding: 5px 10px;
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    text-transform: uppercase;
}

.language-switch a:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    text-decoration: none;
}


/* HERO SEKTION (Bild und Haupttitel) */
.hero {
    display: flex;
    flex-direction: column; /* Bild und Text untereinander */
    align-items: center;
    padding: 40px 0;
    text-align: center;
}

.profile-image {
    /*width: 200px;*/ /* Kleinere, professionelle Darstellung */
    width: 180px;
    height: 200px;
    object-fit: cover;
    /*border-radius: 50%;*/ /* Rundes Bild */
    border-radius: 5%;
    border: 5px solid var(--color-light-background);
    margin-bottom: 20px;
}

/* TÄTIGKEITEN SEKTION */
.services {
    padding: 40px 20px;
    background-color: var(--color-light-background);
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}

.service-list {
    list-style-type: none; /* Keine Standard-Punkte */
    padding: 0;
    text-align: center; /* Zentrierung des Listentextes */
}

.service-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    /* Optional: Ein stilisiertes Häkchen oder Punkt voranstellen */
    position: relative;
    padding-left: 20px; 
    display: inline-block;
}

.service-list li::before {
    content: "•"; /* Stylisierter Punkt als Aufzählungszeichen */
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* FUSSZEILE (Impressum) */
.footer {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 30px 20px;
    text-align: center;
}

.footer h2 {
    color: var(--color-background);
    border-bottom: 1px solid var(--color-secondary);
    margin-bottom: 15px;
}

.impressum p {
    margin: 5px 0;
}

.impressum a {
    color: #b0c4de; /* Hellere Farbe für Links im dunklen Footer */
    text-decoration: none;
}

.impressum a:hover {
    color: var(--color-background);
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .main-header {
        flex-direction: column; /* Navigation unter Logo auf kleinen Screens */
    }

    .logo {
        margin-bottom: 10px;
    }
}