/**
 * THEME TOGGLE BUTTON STYLES
 * Winterrätsel Haldensleben 2025
 */

/* Legacy Theme Toggle Button - Hidden (now in header) */
.theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #fcd34d);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Smooth theme transition */
html {
    transition: background-color var(--transition-base, 200ms), color var(--transition-base, 200ms);
}

body {
    transition: background-color var(--transition-base, 200ms), color var(--transition-base, 200ms);
}
