/* Christmas Theme Background */
body.christmas-mode {
    position: relative;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f5 30%, #f0fff0 60%, #fff5f5 100%);
    min-height: 100vh;
}

/* Background layer for random decorations - will be set dynamically */
body.christmas-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.12;
    background-repeat: no-repeat;
}

/* Additional background layer for more random decorations */
body.christmas-mode::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    background-repeat: no-repeat;
}

/* Ensure content is above background */
body.christmas-mode main,
body.christmas-mode footer {
    position: relative;
    z-index: 1;
}

/* Navbar needs higher z-index to stay on top of all content */
body.christmas-mode nav {
    position: relative;
    z-index: 1000;
}

/* Ensure dropdown menus appear above Christmas decorations */
body.christmas-mode .dropdown-menu {
    position: absolute;
    z-index: 1050 !important;
}

/* Christmas toggle button styling */
.christmas-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.christmas-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.christmas-toggle.active {
    color: #d32f2f;
}

.christmas-toggle i {
    font-size: 1.2rem;
}
