/* FusionFitness Ulmen - Jubiläums-Landingpage Stylesheet
   Jubiläumswoche & Sommerfest 2025
   Layout: 3-Zonen-Struktur (Header, Program, CTA)
*/

/* CSS Variablen für Jubiläumsfarben */
:root {
    --jubilee-primary: #ff6b9d; /* Pink/Rose */
    --jubilee-secondary: #4ecdc4; /* Türkis/Mint */
    --jubilee-accent: #45b7d1; /* Blau */
    --jubilee-warning: #ffa726; /* Orange */
    --jubilee-gold: #ffd700; /* Gold für Highlights */
    
    /* Base colors */
    --dark-bg: #1a1a1a;
    --primary-pink: #ff6b9d;
    --primary-mint: #4ecdc4;
    --primary-blue: #45b7d1;
    --accent-gold: #ffd700;
    --text-light: #f5f5f5;
    --text-dark: #333;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, 
                rgba(46, 125, 249, 0.2) 0%, 
                rgba(255, 107, 157, 0.25) 100%),
                linear-gradient(to bottom, #ffffff 0%, #f5f8fa 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Basis für Jubiläums-Seite */
.jubilee-page {
    background: linear-gradient(135deg, 
                rgba(213, 227, 248, 0.35) 40%, 
                rgba(58, 69, 74, 0.45) 60%);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* ZONE 1: Hero/Header Section */
.jubilee-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, 
                rgba(213, 227, 248, 0.35) 40%, 
                rgba(58, 69, 74, 0.45) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jubilee-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.18) 0%, transparent 50%),
                     radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.15) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    position: relative;
}

.logo {
    max-height: 60px;
}

.jubilee-badge {
    background: var(--accent-gold);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: birthday-pulse 2s ease-in-out infinite;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes birthday-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2c3e50;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    text-shadow: none;
}

.hero-date {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--accent-gold);
    display: inline-block;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta {
    margin-top: 20px;
}

.cta-button {
    background: var(--accent-gold);
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Video in Hero Section */
.hero-video-section {
    margin-top: 60px;
    width: 100%;
    padding: 20px 0;
}

.video-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-gold);
}

/* Video Overlay Styles */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.video-overlay-content {
    width: 90%;
    max-width: 1200px;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Responsive Video Overlay */
@media (max-width: 768px) {
    .video-overlay-content {
        max-width: 98%;
        width: 100%;
        margin: 10px;
        border-radius: 8px;
    }
    
    .video-overlay-header {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .video-overlay-header h3 {
        font-size: 1rem;
        margin: 0;
    }
    
    .close-video-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.3);
        color: white;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .video-overlay {
        padding: 5px;
    }
    
    .video-overlay-content {
        max-width: 100%;
        margin: 5px;
        border-radius: 6px;
    }
    
    .video-overlay-header {
        padding: 10px;
    }
    
    .video-overlay-header h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .close-video-btn {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .video-overlay-content {
        width: 900px;
        max-width: 85%;
    }
    
    .video-overlay-header h3 {
        font-size: 1.3rem;
    }
    
    .video-play-button {
        width: 100px;
        height: 100px;
    }
    
    .video-play-button i {
        font-size: 36px;
    }
}

.video-overlay.visible .video-overlay-content {
    transform: scale(1);
}

.close-video-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.close-video-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-container {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 300px;
}

.jubilee-video {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button.visible {
    opacity: 1;
    pointer-events: auto;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    font-size: 30px;
    color: white;
    margin-left: 5px; /* Kleiner Versatz für optische Zentrierung */
}

/* Video Show Button im Hero-Bereich */
.show-video-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffa500 100%);
    color: #333;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.show-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.show-video-btn:hover::before {
    left: 100%;
}

.show-video-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.show-video-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Responsive Display Controls */
.mobile-only {
    display: inline-flex;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* Desktop Video Preview */
.video-preview-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.video-preview {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(3px) brightness(0.7);
    transition: filter 0.3s ease;
}

.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-preview-container:hover .video-preview {
    filter: blur(2px) brightness(0.8);
}

.video-preview-container:hover .video-preview-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.show-video-btn-desktop {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffa500 100%);
    color: #333;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.show-video-btn-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.show-video-btn-desktop:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.show-video-btn-desktop:hover::before {
    left: 100%;
}

.show-video-btn-desktop:active {
    transform: scale(1.05);
}

.show-video-btn-desktop i {
    margin-right: 10px;
    font-size: 1.3em;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* ZONE 2: Program Section */
.program-section {
    padding: 80px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.quick-cta {
    margin-top: 20px;
}

.quick-cta-btn {
    background: var(--primary-pink);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.quick-cta-btn:hover {
    background: var(--primary-mint);
    transform: translateY(-2px);
}

.program-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.program-day {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-day.compact {
    margin-bottom: 15px;
}

.program-day.montag-special {
    position: relative;
    overflow: visible;
}

.program-day.mittwoch-special {
    position: relative;
    overflow: visible;
}

.program-day.donnerstag-special {
    position: relative;
    overflow: visible;
}

.christa-sticker {
    position: absolute;
    right: 20px;
    top: 85px;
    z-index: 10;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

.christa-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 0 8px rgba(255, 215, 0, 0.2);
    object-fit: cover;
    background: white;
    padding: 2px;
    transition: all 0.3s ease;
}

.christa-image:hover {
    transform: scale(1.1) rotate(-5deg);
}

.marc-sticker {
    position: absolute;
    right: 20px;
    top: 85px;
    z-index: 10;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.marc-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-mint);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 0 8px rgba(102, 217, 239, 0.2);
    object-fit: cover;
    background: white;
    padding: 2px;
    transition: all 0.3s ease;
}

.marc-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
                0 0 0 12px rgba(102, 217, 239, 0.3);
}

.susanne-sticker {
    position: absolute;
    right: 20px;
    top: 85px;
    z-index: 10;
    transform: rotate(12deg);
    animation: float 3s ease-in-out infinite;
}

.susanne-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-pink);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 0 8px rgba(255, 107, 157, 0.2);
    object-fit: cover;
    background: white;
    padding: 2px;
    transition: all 0.3s ease;
}

.susanne-image:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
                0 0 0 12px rgba(255, 107, 157, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-10px) rotate(15deg); }
}

.program-day.main-event {
    border: 3px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.program-day.birthday-special {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-mint));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.day-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.day-theme {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: right;
}

.day-content {
    padding: 20px;
}

.compact .day-content {
    padding: 15px 20px;
}

.event-compact {
    margin-bottom: 15px;
}

.event-compact .event-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.event-compact .event-details h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.event-compact .event-details p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

.event-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 8px;
    border-radius: 6px;
    margin: 8px 0;
    color: #856404;
    font-size: 0.9rem;
}

.inline-cta {
    margin-top: 10px;
}

.cta-btn-small {
    background: var(--primary-pink);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn-small:hover {
    background: var(--primary-mint);
    transform: translateY(-1px);
}

.event-secondary.compact {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.birthday-highlight {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
}

.birthday-highlight h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: birthday-bounce 2s ease-in-out infinite;
}

@keyframes birthday-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.time-blocks {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.time-block {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.time-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.activities {
    color: #666;
    font-size: 0.95rem;
}

.birthday-cta {
    margin-top: 20px;
}

.cta-btn-birthday {
    background: var(--accent-gold);
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: birthday-glow 2s ease-in-out infinite;
}

@keyframes birthday-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5); }
}

.cta-btn-birthday:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Mobile optimization for birthday button */
@media (max-width: 768px) {
    .cta-btn-birthday {
        padding: 12px 20px;
        font-size: 0.95rem;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* Contact Form Overlay */
.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.contact-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-mint));
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content {
    padding: 30px;
}

.free-notice {
    background: linear-gradient(135deg, var(--accent-gold), #ffeb3b);
    color: #333;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    border: 3px solid var(--accent-gold);
}

.free-notice p {
    margin: 5px 0;
    font-size: 1rem;
}

.free-notice strong {
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label,
.form-group .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.help-text {
    font-weight: 400;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.checkbox-group {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    background: #fafafa;
    margin-bottom: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item.special {
    border-top: 2px solid #e0e0e0;
    margin-top: 15px;
    padding-top: 15px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(64, 224, 208, 0.1));
    border-radius: 8px;
    padding: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-pink);
    transform: scale(1.2);
}

.checkbox-item label {
    cursor: pointer;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    flex: 1;
}

.checkbox-item:hover {
    background: rgba(255, 105, 180, 0.05);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--primary-pink);
    font-weight: 600;
}

.event-error {
    margin-top: 10px;
    padding: 10px;
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 8px;
    animation: shake 0.5s ease-in-out;
}

.error-text {
    color: #f44336;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-mint);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: #333;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .contact-overlay {
        padding: 10px;
    }
    
    .contact-modal {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .free-notice {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contact-overlay {
        padding: 5px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .free-notice {
        padding: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
}

/* ZONE 3: CTA Section */
.cta-section {
    background: rgba(58, 69, 74, 0.45)
    color: #2c3e50;
    padding: 80px 0;
    text-align: center;
}

.cta-main h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: birthday-pulse 2s ease-in-out infinite;
}

.cta-highlight {
    background: var(--accent-gold);
    color: #333;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: inline-block;
}

.birthday-offer {
    animation: birthday-glow 2s ease-in-out infinite;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-primary {
    text-align: left;
}

.website-link {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-details h3 {
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    width: 20px;
    color: var(--accent-gold);
}

.qr-placeholder {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.qr-placeholder h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 3rem;
    color: #ccc;
}

.qr-description {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.qr-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subline {
        font-size: 1rem;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .day-theme {
        align-self: flex-start;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-primary {
        text-align: center;
    }
    
    .cta-main h2 {
        font-size: 1.8rem;
    }
    
    .cta-highlight {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .jubilee-hero {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .logo-badge {
        width: 100px;
        height: 100px;
    }
    
    .program-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .program-day {
        padding: 20px;
    }
    
    .event-highlight {
        padding: 20px;
    }
}

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

.program-day.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover-Effekte */
.program-day:hover .day-theme {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

/* Form intro styling */
.form-intro h3 {
    color: var(--primary-pink);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro > p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

/* Registration info styling */
.registration-info {
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-highlight {
    background: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border-left: 4px solid #ff6b9d;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.info-note {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border-left: 4px solid #66d9ef;
    box-shadow: 0 2px 8px rgba(102, 217, 239, 0.2);
}

.info-highlight strong,
.info-note strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .info-highlight,
    .info-note {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Privacy Policy Page Styling */
.privacy-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-header .subtitle {
    color: var(--primary-pink);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.privacy-content h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-pink);
    padding-bottom: 5px;
}

.privacy-content p {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.privacy-content ul {
    margin-bottom: 20px;
}

.privacy-content li {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.privacy-content strong {
    color: #1a252f;
    font-weight: 700;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info p {
    color: white;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 20px 10px;
    }
    
    .privacy-header,
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.2rem;
    }
}

/* Animated Balloons Effect */
.balloons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.balloon {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float-up 15s infinite linear;
}

.balloon:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    color: var(--primary-pink);
}

.balloon:nth-child(2) {
    left: 20%;
    animation-delay: 3s;
    color: var(--primary-mint);
}

.balloon:nth-child(3) {
    left: 35%;
    animation-delay: 6s;
    color: var(--accent-gold);
}

.balloon:nth-child(4) {
    left: 50%;
    animation-delay: 9s;
    color: var(--primary-pink);
}

.balloon:nth-child(5) {
    left: 65%;
    animation-delay: 12s;
    color: var(--primary-mint);
}

.balloon:nth-child(6) {
    left: 80%;
    animation-delay: 2s;
    color: var(--accent-gold);
}

.balloon:nth-child(7) {
    left: 90%;
    animation-delay: 8s;
    color: var(--primary-pink);
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Reduce balloon intensity on mobile */
@media (max-width: 768px) {
    .balloon {
        font-size: 18px;
        opacity: 0.4;
    }
    
    .balloon:nth-child(n+6) {
        display: none;
    }
}
