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

body {
    font-family: Arial, sans-serif;
    display: flex; /* Sorgt dafür, dass Nav und Main nebeneinander liegen */
}

/* Hintergrundbild für die gesamte Seite */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ersetze 'background.jpg' durch deinen Bildpfad oder eine URL */
    background: url('../images/background.png') no-repeat center center/cover;
    z-index: -1; /* Legt das Bild hinter den Text */
    filter: brightness(0.7); /* Optional: Dunkelt das Bild etwas ab für bessere Lesbarkeit */
}

/* Seitliche Navigation */
.sidebar {
    width: 250px;
    height: 100vh; /* Volle Bildschirmhöhe */
    background: rgba(0, 0, 0, 0.8); /* Halbtransparentes Schwarz */
    color: white;
    padding: 20px;
    position: fixed; /* Bleibt beim Scrollen stehen */
}

.sidebar h2 {
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    color: #ff9900; /* Farbe beim Drüberfahren */
}

/* Hauptinhalt Bereich */
.content {
    margin-left: 250px; /* Platz für die Sidebar lassen */
    padding: 40px;
    color: white;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Macht Text auf Bildern lesbarer */
}
