/* --- FARBDEFINITIONEN --- */
:root {
    --color-primary: #DAA520;       /* Rich Gold */
    --color-secondary: #2E8B57;     /* Sea Green (Earthy, African nature) */
    --color-background: #F8F8F8;    /* Off-White */
    --color-text-dark: #333333;     /* Dunkles Text für Lesbarkeit auf hellem Grund */
    --color-text-light: #FFFFFF;
    --color-accent-dark: #1F613C;   /* Darker green for header/footer */
}

/* --- GRUNDSTYLING --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background);
    scroll-behavior: smooth;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: var(--color-accent-dark);
    color: var(--color-text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.7em;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}

nav a {
    color: var(--color-text-light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s, transform 0.2s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease-out;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* --- CALL TO ACTION BUTTON (CTA) --- */
.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 14px 35px;
    margin-top: 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #C1921B; 
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* --- ABSCHNITTSSTYLING --- */
.content-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-secondary);
}

.content-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 15px auto 50px auto;
    border-radius: 2px;
}

/* 1. HERO SECTION (HOME) */
.hero {
    /* WICHTIG: Erstellen Sie einen Ordner 'images' und fügen Sie 'hero-bg.jpg' ein */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
        url('images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--color-text-light);
    padding: 180px 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--color-primary); 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* 3. SERVICES SECTION (DARK BACKGROUND) */
.dark-bg {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.dark-bg h2 {
    color: var(--color-text-light);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    flex-basis: calc(33% - 40px);
    min-width: 280px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background-color 0.4s, transform 0.2s, box-shadow 0.3s;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    background-color: rgba(255, 184, 28, 0.1); 
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.service-item h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.6em;
    font-weight: 700;
}

.service-item p {
    font-size: 1.05em;
    opacity: 0.9;
    color: var(--color-text-light);
    max-width: none;
}

/* --- SPEZIFISCHES STYLING FÜR REGIONAL FOCUS (About Us Bereich) --- */
.region-focus .service-item {
    /* Setzt den Hintergrund der Kacheln im About-Bereich auf transparent */
    background-color: transparent !important; 
    box-shadow: none !important; 
    transition: none; 
    padding: 0; 
}

.region-focus .service-item h3 {
    /* Überschrift bleibt Gold */
    color: var(--color-primary); 
    font-size: 1.8em;
}

.region-focus .service-item p {
    /* Text wird Schwarz/Dunkelgrau für Lesbarkeit auf hellem Grund */
    color: var(--color-text-dark) !important; 
    opacity: 1; 
    font-size: 1.05em;
    font-weight: 400;
    max-width: none;
}

.region-focus .service-item:hover {
    transform: none; /* Deaktiviert den Lift-Effekt */
    background-color: transparent !important;
}

/* --- KONTAKTFORMULAR --- */
.contact-info {
    margin-bottom: 50px;
    font-size: 1.1em;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--color-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.05em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.3);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-accent-dark);
    color: var(--color-background);
    text-align: center;
    padding: 25px 0;
    font-size: 0.95em;
    border-top: 3px solid var(--color-primary);
}

/* --- RESPONSIVE DESIGN (Media Queries) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 3%;
    }
    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 120px 3%;
        min-height: 450px;
    }
    .hero h1 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.2em;
    }

    .content-section {
        padding: 60px 3%;
    }
    .content-section h2 {
        font-size: 2em;
    }

    .service-grid {
        flex-direction: column;
        gap: 25px;
    }
    .service-item {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }
    .cta-button {
        padding: 10px 20px;
    }
    .logo {
        font-size: 1.4em;
    }
}