body {
    background: #000 url('background.png') no-repeat center top fixed;
    background-size: cover;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header & Container für maximale Lesbarkeit */
header {
    width: 100%;
    background: transparent !important; /* FIXED: Schwarzer Balken ist jetzt komplett weg */
    border-bottom: none !important; /* FIXED: Trennlinie entfernt */
    padding: 20px 0;
    box-shadow: none !important; /* FIXED: Schatten entfernt */
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

/* Logo-Bild exakt skaliert analog zu Bild 3 */
.nav-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #f5b942;
    box-shadow: 0 0 10px rgba(245, 185, 66, 0.5);
    object-fit: cover;
    display: block;
}

.logo-title {
    font-family: 'Georgia', serif;
    font-size: 26px;
    color: #f5b942;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px #000;
}

/* Navigations-Links mit starkem Kontrast & sauber lesbar */
nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: rgba(15, 15, 15, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #2d2517;
}

nav a {
    color: #ffffff; /* Reines Weiß für exzellente Lesbarkeit */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px #000;
    transition: color 0.2s, text-shadow 0.2s;
}

nav a:hover, nav a.active {
    color: #f5b942; /* Gold bei aktiver Seite */
    text-shadow: 0 0 8px rgba(245, 185, 66, 0.8);
}

/* Layout-Boxen */
.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.card {
    background: rgba(12, 12, 12, 0.92); /* Sehr dunkel für perfekte Lesbarkeit der Formulare */
    border: 1px solid #3a2f1d;
    padding: 25px;
    border-radius: 4px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.6), 0 5px 15px rgba(0,0,0,0.8);
    box-sizing: border-box;
}

h2 {
    color: #f5b942;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #3a2f1d;
    padding-bottom: 8px;
    letter-spacing: 1px;
}

form label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #4a3c24;
    color: #fff;
    border-radius: 3px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

form input:focus {
    border-color: #f5b942;
    outline: none;
}

.btn-gold {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #d49e35, #8a6016);
    border: 1px solid #ffca63;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 2px 4px #000;
    font-size: 13px;
}

.btn-gold:hover {
    background: linear-gradient(to bottom, #ffbe43, #ad7b21);
}

/* Tabellen-Style */
table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    font-size: 13px;
    border-bottom: 1px solid #222;
}

footer {
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 11px;
    color: #666;
}
footer a { color: #f5b942; text-decoration: none; }
