/* Landingpage-Redesign 2025: Banner-Logo kleiner & zentriert */
.banner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto 1.5rem auto;
    padding: 0;
    z-index: 2;
}

.banner-logo-img {
    max-width: 320px;
    width: 90vw;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(30, 60, 120, 0.10);
    background: rgba(255,255,255,0.85);
    padding: 0.5rem 1.5rem;
    object-fit: contain;
    transition: box-shadow 0.2s;
}

@media (max-width: 600px) {
    .banner-logo-img {
        max-width: 220px;
        padding: 0.5rem 0.5rem;
    }
    .banner-logo {
        margin: 1.2rem auto 1rem auto;
    }
}
/* ========================================
   RESET & GLOBALE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Winterrätsel 2025: Einheitlicher blauer Winter-Hintergrund */
body {
    font-family: var(--font-sans);
    background: 
        linear-gradient(to bottom, rgba(227, 242, 253, 0.9) 0%, rgba(187, 222, 251, 0.85) 100%),
        url("../assets/images/bg-winterraetsel-hintergrund.jpg") top center / cover no-repeat fixed;
    background-color: #e3f2fd;
    color: var(--wr-color-navy);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   HEADER & NAVIGATION (Helles Design)
   ======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 3rem 3rem 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-logo {
    font-family: var(--font-serif);
    color: var(--wr-color-text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.header-logo-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(22, 50, 79, 0.15));
    border-radius: 24px;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-logo-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--wr-color-navy);
}

.header-logo-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--wr-color-text-muted);
    letter-spacing: 0.5px;
}

.burger-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wr-border-light);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1001;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(15, 39, 77, 0.1);
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(15, 39, 77, 0.15);
    transform: scale(1.05);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: var(--wr-color-navy);
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Overlay Menu - Professionelles Design */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 39, 77, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.close-menu:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-list li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.overlay-menu.active .menu-list li {
    opacity: 1;
    transform: translateY(0);
}

.overlay-menu.active .menu-list li:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.active .menu-list li:nth-child(2) { transition-delay: 0.15s; }
.overlay-menu.active .menu-list li:nth-child(3) { transition-delay: 0.2s; }
.overlay-menu.active .menu-list li:nth-child(4) { transition-delay: 0.25s; }
.overlay-menu.active .menu-list li:nth-child(5) { transition-delay: 0.3s; }
.overlay-menu.active .menu-list li:nth-child(6) { transition-delay: 0.35s; }
.overlay-menu.active .menu-list li:nth-child(7) { transition-delay: 0.4s; }
.overlay-menu.active .menu-list li:nth-child(8) { transition-delay: 0.45s; }

.menu-link {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    display: inline-block;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.menu-link:hover,
.menu-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wr-color-gold-light);
}

/* ========================================
   BOKEH/SNOWFLAKE EFFECTS (Helles Design)
   ======================================== */
.bokeh-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    animation: bokehFloat 20s ease-in-out infinite;
}

.bokeh-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 184, 255, 0.3), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bokeh-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 181, 206, 0.25), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.bokeh-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(79, 184, 255, 0.3), transparent);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.bokeh-4 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 181, 206, 0.2), transparent);
    top: 30%;
    right: 30%;
    animation-delay: 7s;
}

.bokeh-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 184, 255, 0.25), transparent);
    bottom: 10%;
    right: 5%;
    animation-delay: 12s;
}

@keyframes bokehFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO SECTION - ZENTRIERT & MINIMALISTISCH
   ======================================== */
/* Landingpage-Redesign 2025: Hero-Bereich minimalistisch & luftig */
.hero-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem 1.5rem;
    background: rgba(255,255,255,0.82);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(30, 60, 120, 0.08);
    position: relative;
    z-index: 2;
}

.hero-layout-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    color: #0f274d;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.8em;
    line-height: 1.1;
}

.main-logo {
    display: block;
    margin: 2rem auto 2rem auto;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(15, 39, 77, 0.08);
}

.hero-subtitle {
    color: #4a6fa1;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.2em;
    line-height: 1.6;
}

/* CTA Buttons - Landingpage-Redesign 2025 */
.hero-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.5em;
}

.hero-btn-large {
    background: linear-gradient(90deg, #f7b2c2 0%, #b2d8f7 100%);
    color: #0f274d;
    font-weight: 600;
    border: none;
    border-radius: 2em;
    padding: 0.85em 2.2em;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(30, 60, 120, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-large:hover,
.hero-btn-large:focus {
    background: linear-gradient(90deg, #f7b2c2 10%, #a2c8f7 90%);
    box-shadow: 0 4px 16px 0 rgba(30, 60, 120, 0.12);
}

.hero-btn-outline {
    background: transparent;
    color: #0f274d;
    border: 2px solid #b2d8f7;
    border-radius: 2em;
    padding: 0.85em 2.2em;
    font-size: 1.1rem;
    font-weight: 600;
    transition: border 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-outline:hover,
.hero-btn-outline:focus {
    border-color: #f7b2c2;
    color: #b23a48;
}

/* Info Links */
.hero-info-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5em;
    font-size: 1rem;
}

.info-link {
    color: #4a6fa1;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    font-weight: 500;
}

.info-link:hover {
    color: #0f274d;
    border-bottom-color: #b2d8f7;
}

/* Landingpage-Redesign 2025: Quickinfo-Section */
.quickinfo-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(30, 60, 120, 0.07);
    margin: 2rem auto;
    max-width: 1200px;
}

.quickinfo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quickinfo-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--wr-color-text-main);
    margin-bottom: 2rem;
}

.quickinfo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.quickinfo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: var(--wr-bg-card);
    color: var(--wr-color-navy);
    border: 2px solid var(--wr-border-light);
    transition: all 0.3s ease;
}

.quickinfo-btn:hover {
    background: var(--wr-bg-accent);
    border-color: var(--wr-color-light-blue);
    color: var(--wr-color-light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 184, 255, 0.2);
}

/* ========================================
   CALENDAR WRAPPER MIT GESCHÄFTEN
   ======================================== */
.calendar-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.shops-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 2;
}

.shop-bubble {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft), 0 0 20px rgba(214, 178, 106, 0.3);
    border: 3px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.shop-bubble::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--color-gold-light),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shop-bubble:hover::before {
    opacity: 1;
}

.shop-bubble:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(214, 178, 106, 0.6);
}

.shop-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ========================================
   WINTERRÄTSEL CALENDAR CARD
   ======================================== */
.advent-calendar-card {
    background: white;
    border-radius: var(--radius-lg);
    flex: 0 1 1580px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.2);
    max-width: 1580px;
    margin: 0 auto;
}

@keyframes cardGlow {
    from {
        box-shadow: var(--shadow-medium), 0 0 20px rgba(214, 178, 106, 0.3);
    }
    to {
        box-shadow: var(--shadow-medium), 0 0 40px rgba(214, 178, 106, 0.5);
    }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.calendar-ornament {
    font-size: 2rem;
    animation: snowflakeFloat 3s ease-in-out infinite;
}

@keyframes snowflakeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   CALENDAR SECTION (PUZZLE-DESIGN)
   ======================================== */
.calendar-section {
    padding: 4rem 0;
    position: relative;
}

.calendar-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--wr-color-navy);
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Calendar Door - Klare, scharfe Cards */
.calendar-door {
    aspect-ratio: 1;
    background: linear-gradient(to bottom, #e6f1ff, #d0def7);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 12px rgba(15, 39, 77, 0.06);
    color: #4b5563;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.door-number {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 50%, #7bb8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.door-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wr-color-text-muted);
    margin-top: 0.25rem;
}

.calendar-door:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(79, 184, 255, 0.2);
    border-color: var(--wr-color-light-blue);
}

/* State: Today/Current */
.calendar-door.current,
.calendar-door.today {
    background: linear-gradient(135deg, var(--wr-color-pink) 0%, var(--wr-color-light-blue) 100%);
    border-color: var(--wr-color-light-blue);
    box-shadow: 0 0 30px rgba(79, 184, 255, 0.6);
    animation: currentDoorPulse 2s ease-in-out infinite;
}

@keyframes currentDoorPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(79, 184, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 181, 206, 0.8);
    }
}

.calendar-door.current .door-number,
.calendar-door.today .door-number,
.calendar-door.current .door-label,
.calendar-door.today .door-label {
    color: var(--wr-color-white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* State: Active/Unlocked */
.calendar-door.active,
.calendar-door.unlocked {
    opacity: 1;
    background: var(--wr-color-white);
}

.calendar-door.active:hover,
.calendar-door.unlocked:hover {
    border-color: var(--wr-color-light-blue);
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.05) 0%, rgba(255, 181, 206, 0.05) 100%);
}

/* State: Locked */
.calendar-door.locked {
    background: linear-gradient(to bottom, #eef3fc, #dde5f7);
    color: #9ca3af;
    cursor: not-allowed !important;
}

.calendar-door.locked:hover {
    transform: none !important;
    box-shadow: var(--wr-shadow-soft) !important;
    border-color: var(--wr-border-light) !important;
}

.calendar-door.locked::after {
    content: '🔒';
    position: absolute;
    font-size: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.calendar-door.locked .door-number {
    background: linear-gradient(135deg, #b0c4de 0%, #c8d8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* State: Past */
.calendar-door.past {
    opacity: 0.6;
    background: var(--color-neutral-50);
}

.calendar-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(79, 184, 255, 0.2);
}

.calendar-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
/* ========================================
   ABOUT SECTION (Puzzle Theme)
   ======================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: transparent;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--wr-color-light-blue), transparent);
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(79, 184, 255, 0.3);
}

/* Landingpage-Redesign 2025: Section-Titles */
.section-title {
    color: #0f274d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7em;
    text-align: center;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.1rem;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--wr-color-text-main);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.feature-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-icon-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--wr-bg-card);
    border: 1px solid var(--wr-border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--wr-shadow-soft);
    transition: all 0.3s ease;
}

.feature-icon-item:hover {
    transform: translateY(-5px);
    background: var(--wr-bg-accent);
    box-shadow: var(--wr-shadow-medium);
    border-color: var(--wr-color-light-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--wr-color-navy);
    font-weight: 500;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--spacing-xl) 0;
    background: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step-card {
    background: linear-gradient(135deg, var(--color-cream-light), var(--color-cream));
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-gold-light);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(214, 178, 106, 0.4);
}

.step-icon {
    font-size: 4rem;
    margin: var(--spacing-md) 0;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-red);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-strong);
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    color: var(--color-red);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button-icon {
    font-size: 1.5rem;
}

.cta-countdown {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: var(--spacing-xs);
}

.countdown-separator {
    font-size: 2rem;
    opacity: 0.6;
    margin: 0 var(--spacing-xs);
}

.countdown-started {
    font-size: 1.5rem;
    font-weight: 700;
    animation: celebrate 1s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   SHOP MODAL
   ======================================== */
.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.shop-modal.active {
    display: flex;
}

.shop-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74, 55, 40, 0.85);
    -webkit-backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.shop-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-strong), var(--shadow-gold-glow);
    border: 3px solid var(--color-gold-light);
    position: relative;
    z-index: 1;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background: var(--color-gold-light);
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.shop-modal-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg);
}

.shop-modal-body {
    text-align: center;
}

.shop-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-soft);
}

.shop-name {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-red);
    margin-bottom: var(--spacing-sm);
}

.shop-address {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.shop-description {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.shop-hours {
    background: var(--color-cream-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    color: var(--color-text-dark);
}

.shop-website {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.shop-website:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ========================================
   SCROLLING BANNER
   ======================================== */
.scrolling-banner-section {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: linear-gradient(to right, var(--color-cream-light), white, var(--color-cream-light));
}

.scrolling-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.banner-item:hover {
    transform: scale(1.05);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   FOOTER (Helles Design)
   ======================================== */
.footer {
    background: #E9F0FA;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--wr-border-light);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--wr-color-navy);
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.footer-link-heading {
    display: inline;
    font-size: 0.875rem;
    font-weight: normal;
    margin: 0;
}

.footer-link {
    color: var(--wr-color-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--wr-color-light-blue);
    background: rgba(79, 184, 255, 0.1);
}

.footer-separator {
    color: var(--wr-color-text-muted);
    opacity: 0.5;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE (PUZZLE-DESIGN)
   ======================================== */

/* Bis 1080px: Zentrale Spalte */
@media (max-width: 1080px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Ab 900px: Hero zentriert (bereits durch Flexbox) */
@media (max-width: 900px) {
    .hero-content {
        padding: 2rem;
    }
    
    .hero-logo-image {
        max-width: 220px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Ab 768px: Burger-Only, Mobile Navigation */
@media (max-width: 768px) {
    .header-logo-subtitle {
        font-size: 0.65rem;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .door-label {
        font-size: 0.6rem;
    }
    
    .feature-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        max-width: 80%;
    }
}

/* Kleine Screens: 3-spaltig Kalender */
@media (max-width: 480px) {
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .door-number {
        font-size: 1.5rem;
    }
    
    .door-label {
        display: none; /* Platz sparen */
    }
    
    .feature-icons {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .header-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .header-logo-title {
        font-size: 1.1rem;
    }
    
    .menu-link {
        font-size: 1.5rem;
    }
}

/* Extra Small: ≤360px */
@media (max-width: 360px) {
    .calendar-grid {
        gap: 0.35rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

/* Rules Section Styles */
/* ========================================
   RULES SECTION (Puzzle Theme)
   ======================================== */
.rules-section {
    padding: var(--spacing-xl) 0;
    background: transparent;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.rules-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rules-intro-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--wr-color-white);
    margin: 0;
    text-shadow: 0 1px 3px rgba(4, 19, 38, 0.5);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.rule-card {
    background: var(--wr-bg-card);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--wr-shadow-soft);
    border: 1px solid var(--wr-border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wr-color-light-blue), var(--wr-color-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    background: var(--wr-bg-accent);
    box-shadow: var(--wr-shadow-medium);
    border-color: var(--wr-color-light-blue);
}

.rule-card:hover::before {
    opacity: 1;
}

.rule-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--wr-color-light-blue), var(--wr-color-pink));
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(79, 184, 255, 0.3);
}

.rule-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wr-color-navy);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.3;
}

.rule-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--wr-color-text-main);
    margin: 0;
}

.rules-footer {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--wr-color-light-blue);
    box-shadow: 0 4px 20px rgba(4, 19, 38, 0.3);
    margin-top: var(--spacing-md);
}

.rules-note {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--wr-color-white);
    margin: 0;
}

.rules-note strong {
    color: var(--wr-color-pink);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 181, 206, 0.5);
}

/* ========================================
   PRIZES SECTION (Puzzle Theme)
   ======================================== */
.prizes-section {
    padding: var(--spacing-xl) 0;
    background: transparent;
}


/* ========================================
   NEUES HERO SECTION LAYOUT
   ======================================== */
.hero-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, var(--color-background) 0%, #fffaf1 50%, var(--color-cream-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #e03a3a);
    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hero-btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.hero-btn-secondary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-cream), var(--color-cream-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold-glow);
}

.hero-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-decoration span {
    position: absolute;
    font-size: clamp(3rem, 8vw, 6rem);
    animation: float 3s ease-in-out infinite;
}

.hero-star {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.hero-tree {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 10vw, 8rem);
    animation-delay: 0.5s;
}

.hero-gift {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.hero-snow {
    top: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   PARTNERS STRIP
   ======================================== */
.partners-strip {
    padding: 4rem 0;
    background: linear-gradient(180deg, white 0%, var(--color-cream-light) 100%);
    position: relative;
}

.partners-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

.partners-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 1rem;
}

.partners-scroll-hint {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0 0 2rem 0;
    opacity: 0.8;
    font-style: italic;
}

.partners-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0.5rem;
    scroll-behavior: smooth;
    /* -webkit-overflow-scrolling: touch; entfernt, da nicht mehr unterstützt */
}

/* Scrollbar Styling */
.partners-track-wrapper::-webkit-scrollbar {
    height: 10px;
}

.partners-track-wrapper::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 5px;
    margin: 0 1rem;
}

.partners-track-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
    transition: background 0.3s;
}

.partners-track-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.partners-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    padding: 0 1rem;
}

.partner-logo-card {
    flex: 0 0 auto;
    width: 140px;
    height: 160px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--color-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-primary);
    z-index: 10;
}

.partner-logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.partner-logo-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-cream), var(--color-cream-light));
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.partner-name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: auto;
}

.partners-nav {
    display: none;
}

@media (max-width: 768px) {
    .partner-logo-card {
        width: 120px;
        height: 140px;
        padding: 0.75rem;
    }
    
    .partner-logo-image {
        width: 80px;
        height: 80px;
    }
    
    .partner-logo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ========================================
   PARTNER DETAIL MODAL
   ======================================== */
.partner-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.partner-modal.active {
    opacity: 1;
    visibility: visible;
}
.partner-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}


.partner-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    padding: 3rem;
}

.partner-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.partner-modal-close:hover {
    background: var(--color-red-dark);
    transform: rotate(90deg);
}

.partner-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-cream);
}

.partner-detail-logo {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
}

.partner-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--color-accent);
}

.partner-detail-logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 3px solid var(--color-accent);
}

.partner-detail-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.partner-detail-tagline {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.partner-detail-section {
    margin-bottom: 2rem;
}

.partner-detail-section h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-detail-item {
    display: flex;
    gap: 0.75rem;
}

.partner-detail-icon {
    flex: 0 0 30px;
    font-size: 1.5rem;
}

.partner-detail-text {
    flex: 1;
}

.partner-detail-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.partner-detail-value {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.partner-detail-value a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-detail-value a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.partner-detail-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.partner-opening-hours {
    display: grid;
    gap: 0.5rem;
}

.partner-opening-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--color-cream-light);
    border-radius: var(--radius-sm);
}

.partner-opening-hours-day {
    font-weight: 600;
    color: var(--color-text-dark);
}

.partner-opening-hours-time {
    color: var(--color-text-light);
}

/* ========================================
   CALENDAR SECTION
   ======================================== */
.calendar-section {
    padding: 4rem 0;
    background: var(--color-background);
}

/* ========================================
   CONTENT PAGES (wie-funktioniert, spielregeln, faq)
   ======================================== */
.content-page {
    padding: 2rem 0 4rem 0;
    min-height: 60vh;
}

.content-card {
    background: var(--wr-bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--wr-shadow-soft);
    max-width: 900px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--wr-border-light);
}

.content-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--wr-color-navy);
    margin-bottom: 1rem;
}

.content-header .lead {
    font-size: 1.2rem;
    color: var(--wr-color-text-main);
    opacity: 0.8;
}

/* Steps Section */
.steps-section {
    margin: 3rem 0;
}

.step-card {
    background: var(--wr-bg-accent);
    border: 1px solid var(--wr-border-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--wr-color-pink), var(--wr-color-light-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(79, 184, 255, 0.3);
}

.step-card h2 {
    color: var(--wr-color-navy);
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--wr-color-text-main);
    line-height: 1.7;
}

.step-card .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.step-card .feature-list li {
    padding: 0.5rem 0;
    color: var(--wr-color-text-main);
}

/* Info Boxes */
.tip-box, .warning-box, .success-box {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
}

.tip-box {
    background: #E5F3FF;
    border-color: var(--wr-color-light-blue);
}

.warning-box {
    background: #FFF4E5;
    border-color: #FFB84D;
}

.success-box {
    background: #E8F9F0;
    border-color: #4CAF50;
}

/* Timeline */
.timeline-section {
    margin: 3rem 0;
}

.timeline-section h2 {
    color: var(--wr-color-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--wr-color-light-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--wr-color-pink);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--wr-color-light-blue);
}

.timeline-date {
    font-weight: 700;
    color: var(--wr-color-light-blue);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--wr-color-navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--wr-color-text-main);
    line-height: 1.6;
}

/* Rules Section */
.rules-section {
    margin: 3rem 0;
}

.rules-section h2 {
    color: var(--wr-color-navy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.rule-box {
    background: var(--wr-bg-accent);
    border: 1px solid var(--wr-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rule-box h3 {
    color: var(--wr-color-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rule-box p, .rule-box ul {
    color: var(--wr-color-text-main);
    line-height: 1.7;
}

.rule-box ul {
    list-style: none;
    padding: 0;
}

.rule-box li {
    padding: 0.4rem 0;
}

.rule-box a {
    color: var(--wr-color-light-blue);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    color: var(--wr-color-navy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item {
    background: var(--wr-bg-accent);
    border: 1px solid var(--wr-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--wr-shadow-soft);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--wr-color-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p, .faq-item ul, .faq-item ol {
    color: var(--wr-color-text-main);
    line-height: 1.7;
}

.faq-item ul, .faq-item ol {
    padding-left: 1.5rem;
}

.faq-item a {
    color: var(--wr-color-light-blue);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--wr-bg-accent);
    border-radius: 16px;
}

.cta-section h2 {
    color: var(--wr-color-navy);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--wr-color-text-main);
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wr-color-pink), var(--wr-color-light-blue));
    color: white;
    box-shadow: 0 4px 12px rgba(79, 184, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 184, 255, 0.4);
}

.btn-secondary {
    background: var(--wr-bg-card);
    color: var(--wr-color-navy);
    border-color: var(--wr-color-light-blue);
}

.btn-secondary:hover {
    background: var(--wr-bg-accent);
    transform: translateY(-3px);
}

/* Landingpage-Redesign 2025: Mobile Responsive */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 1.2rem 0.5rem 2rem 0.5rem;
        border-radius: 1rem;
    }
    .hero-main-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-btn-large,
    .hero-btn-outline {
        font-size: 1rem;
        padding: 0.7em 1.2em;
    }
    .quickinfo-section,
    .advent-calendar-card {
        padding: 1rem 0.5rem;
        border-radius: 0.7rem;
    }
}

@media (max-width: 768px) {
    .partner-modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .partner-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .partner-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WINTER-RALLYE ERROR PANEL
   Wird nur bei echten technischen Fehlern angezeigt
   ======================================== */
#winter-rallye-error,
.init-error {
    display: none; /* Standardmäßig versteckt */
}

/* Wenn vom JavaScript eingeblendet (nur bei echtem Fehler) */
#winter-rallye-error[style*="display: block"],
#winter-rallye-error[style*="display:block"],
.init-error[style*="display: block"],
.init-error[style*="display:block"] {
    display: block !important;
}

/* ========================================
   SUPPORTERS SECTION - Unsere Unterstützer
   Im gleichen Design-Stil wie Partner-Sektion
   ======================================== */

.supporters-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f5f7fb 0%, #ffffff 100%);
}

.supporters-header {
    text-align: center;
    margin-bottom: 3rem;
}

.supporters-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #d4a574 0%, #b8956c 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
}

.supporters-header-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
    stroke-width: 2;
}

.supporters-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--wr-color-navy, #0f274d);
    margin: 0 0 0.75rem 0;
    font-family: var(--wr-font-heading, 'Quicksand', sans-serif);
    line-height: 1.2;
}

.supporters-subtitle {
    font-size: 1.125rem;
    color: var(--wr-text-secondary, rgba(15, 39, 77, 0.7));
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Supporters Grid */
.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Supporter Card */
.supporter-card {
    background: white;
    border: 2px solid var(--wr-color-gold, #d4a574);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 39, 77, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.supporter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(15, 39, 77, 0.15);
    border-color: var(--wr-color-navy, #0f274d);
}

/* Logo Container */
.supporter-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.supporter-logo img,
.supporter-card img {
    display: block;
    max-width: 100px;    /* Erhöht von 90px auf 100px (User-Anforderung: 80-100px) */
    max-height: 100px;   /* Erhöht von 90px auf 100px */
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.supporter-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--wr-color-navy, #0f274d);
    margin: 0 0 0.75rem 0;
    font-family: var(--wr-font-heading, 'Quicksand', sans-serif);
    line-height: 1.3;
}

.supporter-address {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--wr-text-secondary, rgba(15, 39, 77, 0.7));
    line-height: 1.5;
}

.supporter-address svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--wr-color-gold, #d4a574);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.supporter-address span {
    flex: 1;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .supporters-section {
        padding: 3rem 0;
    }

    .supporters-header {
        margin-bottom: 2rem;
    }

    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.75rem;
    }

    .supporter-card {
        padding: 1rem;
    }

    .supporter-logo {
        margin-bottom: 0.75rem;
    }

    .supporter-logo img,
    .supporter-card img {
        max-width: 80px;    /* Mobile: etwas kleiner */
        max-height: 80px;
    }

    .supporter-name {
        font-size: 0.875rem;
    }

    .supporter-address {
        font-size: 0.75rem;
    }
    
    .supporter-address svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .supporters-section {
        background: linear-gradient(to bottom, #1a1f2e 0%, #0f1419 100%);
    }

    .supporter-card {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .supporter-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--wr-color-gold, #d4a574);
    }

    .supporters-title,
    .supporter-name {
        color: #ffffff;
    }

    .supporters-subtitle,
    .supporter-address {
        color: rgba(255, 255, 255, 0.7);
    }
}

