:root {
    --primary-color: #d4af37; /* Gold/Messing-Ton für edlen Innenausbau */
    --text-light: #ffffff;
    --overlay: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Der statische Hintergrund */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px) brightness(0.5); /* Blur-Effekt */
    transform: scale(1.1); /* Verhindert weiße Ränder durch den Blur */
}

header {
    padding: 2rem;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--overlay);
    backdrop-filter: blur(5px); /* Glaseffekt auf dem Content-Panel */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 5rem;
}

/* Responsive Navigation */
nav {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

h1 { color: var(--primary-color); margin-bottom: 1rem; }

@media (max-width: 768px) {
    .content-wrapper { margin: 1rem; padding: 1rem; }
}
