:root {
    --primary: #2F5D34;
    --primary-light: #4C7A4F;
    --dark: #1F3E24;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.12);
    --transition: 0.3s ease;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f0f4f1;
    color: #333;
    line-height: 1.6;
}

/* NAVIGATION */
header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid var(--primary);
    z-index: 1000;
    padding: 15px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.2rem; font-weight: bold; color: var(--primary); line-height: 1.2; }

nav { display: flex; gap: 20px; }

nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover, nav a.active { color: var(--primary); }

nav a::after {
    content: ""; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after { width: 100%; }

/* SEKTIONEN (Hero & Kontakt vereint) */
.full-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 40px;

    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
                url("images/farn.jpg") no-repeat center/cover;

    background-attachment: fixed; /* 🔥 DAS ist der Schlüssel */
}

.glass-card {
    max-width: 900px;
    width: 90%;
    padding: 40px;
    border-radius: 15px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.glass-card h1 { font-size: clamp(1.5rem, 5vw, 2.5rem); font-style: italic; margin-bottom: 10px; }

/* FORMULAR & BUTTONS */
.form-group { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }

input, textarea {
    padding: 12px; border: 1px solid #ddd; border-radius: 8px;
    background: rgba(255,255,255,0.9); font-family: inherit;
}

.btn {
    background: var(--primary);
    color: var(--white);
    border: none; padding: 12px 25px;
    border-radius: 8px; cursor: pointer;
    font-weight: 600; transition: var(--transition);
    text-decoration: none; display: inline-block;
}

.btn:hover { background: var(--primary-light); }



.ueber-mich .glass-card {
    text-align: left;
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.image-block {
    margin: 25px 0;
}

.image-block img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Gemeinsame Basis für alle Kontakt-Buttons */
.btn-wa, .btn-call {
    display: inline-block;
    width: 100%;           /* Buttons füllen die Breite der Karte aus */
    max-width: 300px;      /* Optionale Begrenzung der Breite */
    padding: 12px 25px;    /* Einheitliches Padding */
    font-family: 'Segoe UI', Arial, sans-serif; /* Gleiche Schriftart */
    font-size: 16px;       /* Gleiche Schriftgröße */
    font-weight: 600;      /* Gleiche Schriftdicke[cite: 1] */
    border-radius: 8px;    /* Gleiche Abrundung[cite: 1] */
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition); /* Sanfter Übergang[cite: 1] */
    margin: 10px auto;     /* Gleiche Abstände */
}
/* WhatsApp: Spezifisches Grün[cite: 1] */
.btn-wa {
    background-color: #25D366;
    color: white;
}
.btn-wa:hover {
    background-color: #1ebe5d;
}

/* Telefon: Nutzt die primäre Markenfarbe oder ein Blau[cite: 1] */
.btn-call {
    background-color: var(--primary); /* Nutzt Ihr Dunkelgrün aus :root[cite: 1] */
    color: white;
}
.btn-call:hover {
    background-color: var(--primary-light);
}


/* COOKIE */
.cookie {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 500px; background: var(--dark);
    color: white; padding: 15px; border-radius: 10px;
    text-align: center; z-index: 2000; transition: 0.5s;
}


/* FOOTER – kompakt */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 12px 20px;   /* vorher ~25px → jetzt deutlich kleiner */
    margin-top: 0px;
    font-size: 13px;      /* etwas kleinerer Text */
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;             /* weniger Abstand */
}

.footer-links {
    display: flex;
    gap: 12px;            /* vorher größer */
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

