/* --- Basis-Einstellungen & Farben --- */
:root {
    --primary-green: #00a896;      /* Das markante Türkisgrün [cite: 101] */
    --dark-bg: #0a3b1c;           /* Dunkler Hintergrund */
    --header-bg: #3bb66e;          /* Ein tiefes Petrol-Grau statt Schwarz */
    --hero-overlay: rgba(255, 255, 255, 0.1); /* Sehr helle Überlagerung */
    --text-light: #98ebb7;
    --text-dark: #2c3e50;
        --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    /*background-color: #fff;*/
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), 
                url('hintergrund.jpg') no-repeat center center fixed;
    background-size: cover;
}

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

/* --- Sticky Header & Logo --- */
#main-header {
    background: var(--header-bg); /* Kein Schwarz mehr */
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#main-header.shrink {
    padding: 10px 0;
    background: rgba(13, 95, 60, 0.95);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    height: 120px;
    /*display: none; */
    transition: var(--transition);
}

#main-header.shrink #logo {
    height: 60px;
    display: inline;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-green);
}

/* --- Hero Sektion --- */
.hero {
    height: 100vh;
    /* Wir nutzen ein helleres Overlay, damit das Bild 'hintergrund.jpg' besser zur Geltung kommt */
    /*background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), 
                url('hintergrund.jpg') no-repeat center center/cover;*/
    background: transparent;
    display: flex;
    align-items: center;
    color: #2c3e50; /*var(--text-dark); /* Schrift auf dunkleres Grau für bessere Lesbarkeit auf hellem Grund */
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;

}

.profile-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid var(--primary-green);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}


.hero-text {
    color: var(--text-light); /* Dunkle Schrift für Jens Seitz [cite: 4] */
}
.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white); 
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px rgba(0,30,12,0.8);
    
}

.hero-text h2 {
    color: var(--primary-green); /* Senior-Consultant in Grün [cite: 4] */
    font-weight: 600;
    margin-bottom: 20px;
}
/* --- Hero Logo & Text Anordnung --- */
.hero-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;

}

.hero-logo-large {
    max-width: 280px;
    height: auto;
    /* Optional: Ein leichter Schatten, damit es sich vom Hintergrund abhebt */
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.1));
    align-items: center;

;  
}
/*------}Skill-Matrix ------*/
.skill-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.skill-list-item {
    background: rgba(255, 255, 255, 0.7); /* Transparenz passend zum fixen Hintergrund */
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
    transition: transform 0.2s ease;
}

.skill-list-item:hover {
    transform: translateX(10px); /* Kleiner Effekt beim Drüberfahren */
    background: rgba(255, 255, 255, 0.9);
}

.skill-list-item h3 {
    color: var(--header-bg);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-list-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Icon-Farbe in der Liste */
.skill-list-item i {
    color: var(--primary-green);
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background: #008f7a;
}

/* Container-Layout für Logo-Wechsel */
.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.side-logo-container {
    flex: 0 0 200px; /* Breite des Logos an der Seite */
    text-align: center;
}

.side-logo {
    width: 100%;
    height: auto;
    opacity: 0.8; /* Leicht dezent, damit es nicht vom Text ablenkt */
}

.content-wrapper {
    flex: 1;
}

section {
    padding: 80px 0;
    /* Ein leichter weißer Schleier lässt den Text auf dem Hintergrund besser hervortreten */
    background: rgba(255, 255, 255, 0.85); 
    margin-bottom: 0;
}

.section-title-left {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}
/* --- Projekt-Grid --- */
#projekte {
    padding: 80px 0;
    background: rgba(249, 249, 249, 0.9);
/*    background: var(--section-gray);*/
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-logo {
    height: 30px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.project-date {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: bold;
}
/* --- Expertise Box -----*/
.expertise-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-green);
}

.expertise-box ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-green);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--primary-green);
    color: #fff;
}
.skills-banner {
    background: var(--header-bg);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.calendar-card {
    background: var(--section-gray);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--primary-green);
    max-width: 800px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* --- Kalender Embed --- */
#termin {
    padding: 80px 0;
}

.calendar-wrapper {
    width: 100%;
    height: 700px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Footer & Social --- */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

/* Icons im Inhaltsbereich (z.B. Termin-Sektion) */
.social-links i, .fa-solid, .fa-brands {
    color: var(--primary-green); /* Dein Türkisgrün aus dem Logo [cite: 2] */
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-links a {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s;
}


/* Icons im Footer (Weiß auf dunklem Grund) */
footer .social-links i {
    color: #ffffff !important; 
    margin: 0 15px;
}

footer .social-links a:hover i {
    color: var(--primary-green) !important;
    transform: scale(1.1);
}
.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 10px;
}

.legal-links a:hover {
    color: #fff;
}
.icon-bar {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.icon-bar a {
    font-size: 2.2rem;
    transition: var(--transition);
}

.icon-bar a:hover {
    color: var(--white);
}

/* --- Rechtliche Seiten Layout --- */
.legal-page {
    padding: 150px 0 80px;
    max-width: 800px;
}

.legal-page h1 { margin-bottom: 30px; }
.legal-page h2 { margin: 20px 0 10px; }
.legal-page p { margin-bottom: 15px; }

/* --- Mobile Anpassung --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 2.5rem; }
    .profile-pic { width: 200px; height: 200px; }
    .flex-row, .flex-row-reverse {
        flex-direction: column;
        text-align: center;
    }.side-logo-container {
        flex: 0 0 auto;
        width: 150px;
        margin-bottom: 20px;
    }
}
/* Mobile Optimierung */
@media (max-width: 1000px) {
    .hero-text-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo {
        max-width: 140px;
        order: -1; /* Logo über dem Text auf kleinen Bildschirmen */
    }
}
