@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-green: #15382b;
    --accent-gold: #c5a059;
    --text-on-white: #222222;
    --text-on-green: #ffffff;
    --bg-light: #ffffff;
    --footer-bg: #0d211a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-on-white); 
    line-height: 1.6; 
    background-color: var(--bg-light);
}

h1, h2, h3, h4 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    color: var(--primary-green); 
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

/* --- HEADER --- */
header {
    background: linear-gradient(120deg, #1e4d36 0%, #15382b 40%, #0b1f16 100%);
    border-bottom: 4px solid var(--accent-gold);
    height: 130px; 
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 4%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.logo-container img { height: 110px; width: auto; object-fit: contain; transition: transform 0.3s; }
.logo-container img:hover { transform: scale(1.02); }

nav ul { display: flex; gap: 3rem; list-style: none; }
nav ul li a {
    text-decoration: none; color: var(--text-on-green) !important;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
nav ul li a:hover, nav ul li a.active { color: var(--accent-gold) !important; }
nav ul li a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 3px;
    background-color: var(--accent-gold); transition: width 0.3s;
}
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--accent-gold); font-size: 2.5rem; cursor: pointer; }

@media (max-width: 1100px) {
    header { height: 100px; padding: 0 1.5rem; } .logo-container img { height: 80px; }
    nav#main-nav ul { display: none; } .mobile-menu-btn { display: block; }
    nav#main-nav { display: none; position: fixed; top: 100px; left: 0; width: 100%; background-color: var(--primary-green); border-bottom: 3px solid var(--accent-gold); padding: 2rem 0; box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
    nav#main-nav.active { display: block; } nav#main-nav.active ul { display: flex; flex-direction: column; gap: 0; text-align: center; }
    nav ul li a { display: block; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 1.2rem; }
    nav ul li a::after { display: none; }
}

/* --- HERO & SECTIONS --- */
.header-placeholder { height: 130px; } 
@media (max-width: 1100px) { .header-placeholder { height: 100px; } }

.hero-section { position: relative; background-size: cover; background-position: center; color: var(--text-on-green); text-align: center; padding: 8rem 2rem; min-height: 75vh; display: flex; align-items: center; justify-content: center; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(21, 56, 43, 0.6), rgba(21, 56, 43, 0.95)); }
.hero-content { position: relative; z-index: 2; max-width: 950px; }

/* DESKTOP GRÖSSE (Groß bleiben) */
.hero-content h1 { color: #ffffff; font-size: 4rem; line-height: 1.1; text-shadow: 0 5px 20px rgba(0,0,0,0.6); }
.hero-content p { font-size: 1.3rem; opacity: 1; margin-bottom: 2.5rem; color: #f4f4f4; }

/* --- HANDY FIX: TEXT VERKLEINERN --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 1.5rem; /* Weniger Abstand */
        min-height: 60vh;
    }
    .hero-content h1 {
        font-size: 1.8rem; /* DEUTLICH kleiner (ca. 29px), damit es passt */
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .btn {
        width: 100%; /* Button mobil über volle Breite */
        padding: 1rem;
    }
}


.btn { display: inline-block; background-color: var(--accent-gold); color: var(--primary-green) !important; padding: 1.2rem 3.5rem; border-radius: 4px; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: all 0.3s; }
.btn:hover { background-color: #d4af37; transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }

/* --- KONTRAST-SICHERHEIT --- */
.highlight-box, .quote-box, .impact-section, div[style*="background-color: var(--primary-green)"], div[style*="background-color: #15382b"] { background-color: var(--primary-green) !important; color: var(--text-on-green) !important; }
.highlight-box h3, .quote-box i, div[style*="background-color"] h3, div[style*="background-color"] i { color: var(--accent-gold) !important; }

.content-section { padding: 6rem 2rem; }
/* Handy Anpassung für Sektionen */
@media (max-width: 768px) { .content-section { padding: 4rem 1.5rem; } }

.service-icon, .competence-item i, .concept-list i, .values-list i, .competence-card i, .impact-card i { color: var(--accent-gold) !important; font-size: 3rem; margin-bottom: 1rem; }
.service-item, .profile-section, .competence-card { background: white; padding: 3rem; border-radius: 8px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: transform 0.3s; border-bottom: 4px solid var(--primary-green); }
.service-item:hover, .competence-card:hover { transform: translateY(-10px); }
.concept-list, .values-list { list-style: none; padding: 0; margin: 1.5rem 0; text-align: left; }
.concept-list li, .values-list li { margin-bottom: 1rem; padding-left: 40px; position: relative; font-size: 1.1rem; font-weight: 600; color: var(--primary-green); }
.concept-list li i, .values-list li i { position: absolute; left: 0; top: 4px; color: var(--accent-gold) !important; font-size: 1.3rem; }

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    color: #cccccc;
    padding: 5rem 2rem;
    border-top: 5px solid var(--accent-gold);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}
.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.footer-col p { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; opacity: 0.9; }
.footer-links-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links-list li a { color: #cccccc; text-decoration: none; transition: all 0.3s; font-weight: 500; font-size: 0.95rem; display: inline-block; }
.footer-links-list li a:hover { color: var(--accent-gold); transform: translateX(5px); }
.copyright { text-align: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; opacity: 0.5; }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .footer-logo { margin: 0 auto 1rem auto; }
}