/* 1. SCHRIFTARTEN & VARIABLEN (Das Bagger-Design) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Roboto:wght@300;400;700&display=swap');

:root {
    --bg-dark: #1b1e22;       
    --bg-light: #262a2e;      
    --text-main: #e2e8f0;     
    --text-white: #ffffff;
    --bagger-gelb: #feca04;   
    --bagger-gelb-hover: #e0b000;
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Globale Link-Formatierung (verhindert das Standard-Lila) */
a {
    color: var(--bagger-gelb);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--bagger-gelb-hover);
    text-decoration: underline;
}

/* 2. LAYOUT & ABSTÄNDE */
.container, 
.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.main-content {
    padding-top: 80px;
    padding-bottom: 60px;
}

/* 3. HEADER UND NAVIGATION */
header {
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--bg-dark);
    border-bottom: 2px solid var(--bg-light);
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-white);
}

.logo::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--bagger-gelb);
    margin-top: 2px;
}

.slogan {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

/* Navigation hat eigene Link-Farben */
nav .nav-links a {
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav .nav-links a:hover {
    color: var(--bagger-gelb);
    text-decoration: none;
}

.highlight-link {
    color: var(--bagger-gelb) !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    margin-top: 10px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--bagger-gelb);
    transition: all 0.3s ease;
}

/* 4. TYPOGRAFIE & TEXTELEMENTE */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    text-transform: uppercase;
}

.main-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.headline-separator, 
.section-separator {
    border: 0;
    height: 4px;
    background-color: var(--bagger-gelb);
    margin-bottom: 40px;
    max-width: 80px;
}

.text-content {
    max-width: 800px;
}

.text-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 300;
}

.text-content strong {
    font-weight: 700;
    color: var(--text-white);
}

/* 5. STARTSEITE (HERO & INFOS) */
.hero-section {
    padding: 80px 0 60px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 850px;
    margin-bottom: 40px;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border-bottom: 6px solid var(--bagger-gelb);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    margin-bottom: 60px;
    display: block;
}

.info-section {
    padding: 80px 0;
    background-color: var(--bg-light); 
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
}

/* 6. BUTTONS & KARTEN */
.btn-primary, .submit-btn {
    display: inline-block;
    background-color: var(--bagger-gelb);
    color: var(--bg-dark);
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover, .submit-btn:hover {
    background-color: var(--bagger-gelb-hover);
    color: var(--bg-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 202, 4, 0.2);
}

.cta-section {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--bagger-gelb);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.card p {
    flex-grow: 1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--bagger-gelb);
    color: var(--bagger-gelb);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    background-color: var(--bagger-gelb);
    color: var(--bg-dark);
    text-decoration: none;
}

/* 7. FORMULAR (ANFRAGEN) */
.form-container {
    max-width: 700px;
    margin-top: 30px;
}

#contactForm {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #3a4148;
    background-color: var(--bg-light);
    color: var(--text-white);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bagger-gelb);
    box-shadow: 0 0 8px rgba(254, 202, 4, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.captcha-group {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--bagger-gelb);
    border-radius: 4px;
}

/* 8. FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--bg-light);
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* 9. RESPONSIVE ANPASSUNGEN (MOBILE) */
@media (max-width: 900px) {
    header {
        padding: 20px 5%;
        align-items: center;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        padding: 30px 5%;
        z-index: 100;
        border-bottom: 2px solid var(--bagger-gelb);
        text-align: left;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    nav .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
        margin-top: 0;
    }

    .main-headline {
        font-size: 2.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Spezielle Formatierung für den Logo-Link */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-link:hover {
    text-decoration: none;
}

/* Lässt den Text "DIE FURCHIS" beim Hovern gelb aufleuchten */
.logo-link:hover .logo {
    color: var(--bagger-gelb);
    transition: color 0.3s ease;
}