/* Grundlegende Seitenstile */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh; /* Seite immer auf die volle Höhe des Viewports ausdehnen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

/* Logo */
.logo {
    max-width: 80%;
    max-height: 80%;
    margin-top: 80px; /* Abstand vom oberen Rand */
}

/* Burger-Icon (optional sichtbar auf größeren Bildschirmen) */
.burger {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    display: none; /* Standardmäßig ausgeblendet */
}

/* Navigation - Startet versteckt und optional sichtbar über "show"-Klasse */
.nav-menu {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 80px; /* Platz für das Logo oben */
    left: 0;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.8); /* Halbtransparenter Hintergrund */
    color: #333;
    height: calc(100% - 80px); /* Höhe des Menüs so berechnen, dass das Logo Platz hat */
    padding-top: 20px;
}

.nav-menu.show {
    display: block; /* Wird angezeigt, wenn die Klasse "show" hinzugefügt wird */
}

/* Stile für Navigationsliste */
.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 20px 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding-left: 20px; /* Abstand vom linken Rand */
    display: block;
}

/* Burger-Menü auf größeren Bildschirmen ausblenden */
@media (min-width: 768px) {
    .burger {
        display: none;
    }
}
