﻿/* === Oster-Theme === */

body {
    background: url('/images/easter-bg.webp') no-repeat center center fixed;
    background-size: cover;
    background-color: #FDF6F0; /* Zartes Creme als Fallback */
    color: #6B4C3B; /* Sanftes Braun für Text */
    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(255, 239, 219, 0.85); /* Pastelliges Beige, leicht transparent */
    color: #6B4C3B;
}

.navbar-left .navbar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF69B4; /* Frisches Pink */
}

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

    .navbar-right .nav-button:hover {
        background-color: #FF69B4;
        color: #FFF0F5;
    }

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

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

/* === Oster-Banner angepasst === */
.easter-banner {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF69B4; /* Frisches Pink für Kontrast */
    text-shadow: 0 0 8px #FFB6C1, 0 0 16px #FFD700; /* Rosa + Gelb Glow */
    animation: glow 2s infinite alternate;
    margin: 40px auto 20px auto;
    letter-spacing: 2px;
    width: fit-content;
    display: block;
}





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

    50% {
        opacity: 0.85;
        text-shadow: 0 0 16px #FFD700;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 8px #FFB6C1;
    }
}



/* === Allgemein === */
* {
    pointer-events: auto !important;
}

/* === Optional: Oster-Deko-Elemente === */
.easter-eggs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

    .easter-eggs img {
        width: 60px;
        height: auto;
        transition: transform 0.3s ease;
    }

        .easter-eggs img:hover {
            transform: scale(1.1) rotate(-5deg);
        }
