/**
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * WINTER-KALENDER - MODERNE CLEAN STRUKTUR
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Klare, übersichtliche Darstellung des Winterrätsel-Kalenders
 * mit 31 Türchen (1. - 31. Dezember 2025)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WINTER CALENDAR SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.winter-calendar {
    padding: 4rem 0 6rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1),
        rgba(227, 242, 253, 0.3)
    );
    position: relative;
}

.winter-calendar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.winter-calendar-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.winter-calendar-kicker {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4a90e2;
    margin-bottom: 0.75rem;
}

.winter-calendar-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0f274d 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.winter-calendar-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KALENDER GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.winter-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
    .winter-calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .winter-calendar-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .winter-calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 1.5rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HINT TEXT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.winter-calendar-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DARK MODE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[data-theme="dark"] .winter-calendar {
    background: linear-gradient(
        to bottom,
        rgba(15, 39, 77, 0.4),
        rgba(15, 39, 77, 0.6)
    );
}

[data-theme="dark"] .winter-calendar-kicker {
    color: #7bb8ff;
}

[data-theme="dark"] .winter-calendar-title {
    background: linear-gradient(135deg, #ffffff 0%, #7bb8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .winter-calendar-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .winter-calendar-hint {
    background: rgba(15, 39, 77, 0.5);
    border-color: rgba(212, 165, 116, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .winter-calendar {
        padding: 3rem 0 4rem;
    }
    
    .winter-calendar-header {
        margin-bottom: 2rem;
    }
    
    .winter-calendar-subtitle {
        font-size: 1rem;
    }
    
    .winter-calendar-grid {
        gap: 0.75rem;
    }
}
