body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Bungee', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #FFD700 0%, #FF8C00 30%, #20B2AA 100%);
    /* Erzeugt eine gelbe Sonne, die in Orange und dann in Meeres-Türkis übergeht */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #FFFDD0; /* Cremeweiß */
}


h1 {
    font-size: 5rem;
    margin: 0;
    color: #FFD700; /* Sonnengelb */
    text-transform: uppercase;
}

p {
    font-size: 2rem;
    margin-top: 10px;
    color: #FFFDD0; /* Cremeweiß */
    letter-spacing: 2px;
}


body {
    flex-direction: column; /* Damit die Nav oben und der Content mittig bleibt */
}

.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(255, 140, 0, 0.85); /* Orange, leicht transparent */
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-nav a {
    text-decoration: none;
    color: #FFFDD0; /* Cremeweiß */
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #FFD700; /* Sonnengelb bei Hover */
}

.top-nav a.active {
    border-bottom: 3px solid #FFFDD0;
}

/* Anpassung für den Content-Bereich */
.hero-content {
    margin-top: 60px; /* Platz für die Navigation schaffen */
    text-align: center;
    text-shadow: 4px 4px 0px #FF8C00;
}
