﻿/* =========================
   Hintergrund & Grundlayout
   ========================= */
body {
    background: url('/images/christmas-bg.webp') no-repeat center center fixed;
    background-size: cover;
    background-color: #1a1a2e; /* fallback */
    color: #fffaf0;
    font-family: 'Mountains of Christmas', cursive;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* =========================
   Navigation
   ========================= */
.navbar {
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(30, 30, 60, 0.85);
    color: #fffaf0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.navbar-left .navbar-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e63946; /* Weihnachtsrot */
    letter-spacing: 1px;
    text-shadow: 0 0 8px #1a1a2e;
}

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

    .navbar-right .nav-button:hover {
        background-color: #e63946;
        color: #1a1a2e;
    }

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

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

/* =========================
   Weihnachts-Banner
   ========================= */
.christmas-banner {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff; /* Weißer Text */
    text-shadow: 0 0 10px #e63946, 0 0 20px #e63946;
    animation: glow 2s infinite alternate;
    margin-top: 20px;
    letter-spacing: 2px;
}



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

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

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

/

/* =========================
   Global Pointer-Fix
   ========================= */
* {
    pointer-events: auto !important;
}
