body {
    margin: 0;
    font-family: sans-serif;
    overflow: hidden; /* Verhindert Scrollleisten durch Animation */
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 30px;
}

.menu-toggle {
    font-size: 2em;
    color: white;
    cursor: pointer;
    text-align: right;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700; /* Goldgelbe Hover-Farbe */
}

/* --- Bild und Text --- */
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 99%;
    height: 99%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Container ausfüllt */
}

.text {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    font-size: 4vw;
    color: white;
    white-space: nowrap;
    animation: move-text 15s linear infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Text-Schatten für bessere Lesbarkeit */
}

@keyframes move-text {
    0% {
        left: -20%;
    }
    100% {
        left: 120%;
    }
}