﻿body {
    background: url('/images/autumn-bg.webp') no-repeat center center fixed;
    background-size: cover;
    background-color: #3E2F1C; /* Fallback in warmem Braun */
    color: #FAF3E0;
    font-family: 'Merriweather', serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(62, 47, 28, 0.85); /* warmes Braun, leicht transparent */
    color: #FAF3E0;
}

.navbar-left .navbar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D2691E; /* herbstliches Zimtbraun */
}

.navbar-right .nav-button {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 2px solid #D2691E;
    color: #D2691E;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .navbar-right .nav-button:hover {
        background-color: #D2691E;
        color: #FAF3E0;
    }

.navbar, .nav-button {
    pointer-events: auto !important;
}

nav, header {
    position: relative;
    z-index: 1000;
}

/* Herbst-Banner */
.autumn-banner {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFA500; /* Goldorange */
    text-shadow: 0 0 10px #FFA500, 0 0 20px #FF8C00;
    animation: glow 2s infinite alternate;
    margin-top: 20px;
    letter-spacing: 2px;
}

@keyframes glow {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px #FFA500;
    }

    50% {
        opacity: 0.85;
        text-shadow: 0 0 20px #FF8C00;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 10px #FFA500;
    }
}

* {
    pointer-events: auto !important;
}
