/* --- VARIABLEN & BASICS --- */
:root {
    --primary: #D4C4A8; 
    --primary-hover: #B39F80;
    --bg-dark: #2D3337; 
    --bg-light: #363C40; 
    --card-bg: #424A50; 
    --border: #505860;
    --text-white: #F5F1E8; 
    --text-dim: #B0B8BF; 
    --radius: 20px;
}

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

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-light); 
    color: var(--text-white); 
    line-height: 1.6; 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%; 
}

/* --- NAVIGATION --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 5%; 
    background: var(--bg-dark); 
    border-bottom: 1px solid var(--border); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.logo { 
    font-size: 1.1rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.logo span { 
    color: var(--primary); 
}

.nav-item { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
}

.nav-label { 
    font-size: 0.65rem; 
    text-transform: uppercase; 
    color: var(--text-dim); 
}

.nav-link { 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

/* --- HERO SEKTION --- */
header { 
    position: relative; 
    height: 85vh; 
    display: flex; 
    align-items: center; 
    padding: 0 5%; 
    overflow: hidden; 
}

.hero-video { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 0; 
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.65); 
    z-index: 1; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1200px; 
    width: 100%; 
    margin: 0 auto; 
}

.hero-content h1 { 
    font-size: clamp(2.2rem, 8vw, 4.5rem); 
    color: var(--primary); 
    text-transform: uppercase; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.hero-content p { 
    font-size: 1.2rem; 
    max-width: 650px; 
    color: var(--text-dim); 
}

.btn { 
    display: inline-block; 
    background: var(--primary); 
    color: var(--bg-dark); 
    padding: 18px 40px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 4px; 
    text-transform: uppercase; 
    transition: 0.3s; 
    border: none; 
    cursor: pointer; 
}

.hero-btn { 
    margin-top: 45px; 
}

/* --- HAUPTBEREICH & GRID --- */
main { 
    padding: 80px 5%; 
    max-width: 1300px; 
    margin: 0 auto; 
}

.section-header { 
    margin-bottom: 50px; 
}

.section-title { 
    font-size: 2rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.divider { 
    width: 60px; 
    height: 4px; 
    background: var(--primary); 
    margin-top: 15px; 
}

.bento-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    width: 100%; 
}

.box { 
    background: var(--card-bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    overflow: hidden; 
}

.box-media { 
    width: 100%; 
    height: 250px; 
}

.box-media video, .box-media iframe { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border: 0; 
}

.box-content { 
    padding: 35px; 
}

.box-content h3 { 
    color: var(--primary); 
    font-size: 1.4rem; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
}

.large-box { 
    grid-column: span 3; 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    margin-top: 20px; 
}

.about-text, .contact-form-area { 
    padding: 60px; 
}

.about-image { 
    background: url('../img/ueber-uns.jpg') center/cover no-repeat; 
    border-left: 1px solid var(--border); 
}

.contact-info-area { 
    background: var(--bg-dark); 
    border-left: 1px solid var(--border); 
}

.map-container { 
    width: 100%; 
    height: 300px; 
    border-bottom: 1px solid var(--border); 
}

form { 
    display: grid; 
    gap: 20px; 
}

input, textarea { 
    width: 100%; 
    padding: 15px; 
    background: var(--bg-light); 
    border: 1px solid var(--border); 
    border-radius: 8px; 
    color: var(--text-white); 
    font-family: inherit; 
}

/* --- FOOTER --- */
footer { 
    background: var(--bg-dark); 
    border-top: 1px solid var(--border); 
    padding: 80px 5% 40px; 
    color: var(--text-dim); 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    max-width: 1300px; 
    margin: 0 auto; 
}

.footer-bottom { 
    border-top: 1px solid var(--border); 
    margin-top: 60px; 
    padding-top: 30px; 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.85rem; 
}

/* FIX: Farbe für Impressum & Datenschutz auf Beige/Gold */
.footer-links a { 
    color: var(--primary); 
    text-decoration: none; 
    margin-left: 20px; 
    transition: 0.3s;
}

.footer-links a:hover { 
    color: var(--text-white); 
}

/* --- FLOATING COOKIE BANNER --- */
.cookie-container { 
    position: fixed; 
    bottom: 25px; 
    left: 25px; 
    width: 320px; 
    background: var(--bg-dark); 
    border: 1px solid var(--border); 
    border-radius: 15px; 
    padding: 25px; 
    z-index: 9999; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.6); 
    display: none; 
    flex-direction: column; 
    gap: 20px; 
}

.cookie-container.show { 
    display: flex; 
}

.cookie-buttons-compact { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.btn-cookie { 
    padding: 12px; 
    border-radius: 6px; 
    font-size: 0.8rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    cursor: pointer; 
    border: none; 
    transition: 0.3s; 
    width: 100%; 
}

.btn-gold { 
    background: var(--primary); 
    color: var(--bg-dark); 
}

.cookie-sub-buttons { 
    display: flex; 
    justify-content: space-between; 
    gap: 10px; 
}

.btn-link-style { 
    background: transparent; 
    color: var(--text-dim); 
    text-decoration: underline; 
    font-size: 0.75rem; 
    text-align: center; 
}

/* --- MOBILE ANSICHT (Zwingend Einspaltig) --- */
@media screen and (max-width: 900px) {
    .bento-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 20px !important; 
    }

    .box { 
        width: 100% !important; 
    }

    .large-box { 
        display: flex !important; 
        flex-direction: column !important; 
    }

    .about-image { 
        height: 250px; 
        order: -1; 
        border-left: none; 
    }

    .contact-info-area, .about-image { 
        border-left: none; 
    }

    .about-text, .contact-form-area { 
        padding: 30px 20px; 
    }

    header { 
        text-align: center; 
    }

    .hero-content h1 { 
        font-size: 2rem; 
    }

    .hero-btn { 
        width: 100%; 
        margin-top: 30px; 
    }

    nav { 
        flex-direction: column; 
        gap: 10px; 
    }

    .nav-item { 
        align-items: center; 
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }

    .cookie-container { 
        left: 10px; 
        right: 10px; 
        bottom: 10px; 
        width: auto; 
    }
}