/* Grundlegende Einstellungen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Heller Hintergrund */
    color: #333; /* Dunkler Text */
}

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

/* Header (Hero-Sektion) */
.hero-section {
    background-color: #2c3e50; /* Dunkles Blau/Grau */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Rundes Bild */
    object-fit: cover;
    border: 4px solid #3498db; /* Akzentfarbe für den Rahmen */
    margin-bottom: 20px;
}

.hero-section h1 {
    margin: 10px 0;
    font-size: 2.8em;
}

.hero-section .subtitle {
    font-size: 1.2em;
    font-weight: 300;
}

/* Navigation */
.navbar {
    background-color: #34495e; /* Etwas helleres Blau/Grau als Header */
    color: #fff;
    padding: 10px 0;
    position: sticky; /* Bleibt beim Scrollen oben */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Für kleinere Bildschirme */
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    display: block;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.navbar ul li a:hover,
.navbar ul li a:focus {
    background-color: #3498db; /* Akzentfarbe beim Hover */
}

/* Allgemeine Sektionen */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.section:last-of-type {
    border-bottom: none;
}

.section h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section h2::after { /* Unterstrich unter der Überschrift */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3498db; /* Akzentfarbe */
    margin: 10px auto 0;
}

/* Berufserfahrung */
.job-entry {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.job-entry h3 {
    color: #3498db; /* Akzentfarbe */
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5em;
}

.job-entry .firm-info {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.job-entry ul {
    list-style: disc;
    margin: 0 0 0 20px;
    padding: 0;
}

.job-entry ul li {
    margin-bottom: 8px;
}

/* Ausbildung */
.education-entry {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.education-entry h3 {
    color: #3498db; /* Akzentfarbe */
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.4em;
}

.education-entry p {
    margin-bottom: 5px;
}

/* Fähigkeiten */
.skills-category {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.skills-category h3 {
    color: #3498db; /* Akzentfarbe */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.skills-category ul {
    list-style: none; /* Keine Standard-Listenpunkte */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Abstand zwischen den Fähigkeiten */
}

.skills-category ul li {
    background-color: #ecf0f1; /* Hellerer Hintergrund für Fähigkeiten-Tags */
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

/* Kontakt */
#kontakt ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#kontakt ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#kontakt ul li a {
    color: #3498db; /* Akzentfarbe für Links */
    text-decoration: none;
    transition: color 0.3s ease;
}

#kontakt ul li a:hover {
    text-decoration: underline;
}


/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design Anpassungen */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section .subtitle {
        font-size: 1em;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 5px 0;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 1.8em;
    }

    .job-entry, .education-entry, .skills-category {
        padding: 20px;
        margin-bottom: 20px;
    }
}
/* Kontaktformular */
.contact-form-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px; /* Formularbreite begrenzen */
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container h3 {
    text-align: center;
    color: #3498db;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px); /* Padding berücksichtigen */
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Padding und Border in die Breite einrechnen */
}

.form-group textarea {
    resize: vertical; /* Nur vertikales Resizing erlauben */
    min-height: 100px;
}

.btn-submit {
    background-color: #3498db; /* Akzentfarbe */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: block; /* Button volle Breite */
    width: 100%;
}

.btn-submit:hover {
    background-color: #2980b9; /* Dunklerer Ton beim Hover */
}

.form-message {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 20px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        width: 100%;
    }
}