/* ========================================
   MYSTERY ERLEBNIS - PREMIUM HERO SECTION
   Emotionales Design für Erlebnis-Buchung
   ======================================== */

/* ======================================== 
   HERO CONTAINER - VOLLBILD IMPACT
   ======================================== */
.booking-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: none;
}

/* ======================================== 
   HERO CONTENT WRAPPER
   ======================================== */
.booking-hero .container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* ======================================== 
   LINKE SEITE - EMOTIONALE BOTSCHAFT
   ======================================== */
.hero-emotional-content {
    animation: fadeInUp 1s ease-out;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: var(--font-semibold);
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.1); }
    50% { box-shadow: 0 0 30px rgba(255,215,0,0.2), 0 0 60px rgba(255,215,0,0.1); }
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Emotionaler Haupttitel */
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.headline-emotion {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.headline-mystery {
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #FFE082 50%, var(--color-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s linear infinite;
    filter: drop-shadow(0 2px 10px rgba(255,215,0,0.3));
}

@keyframes goldShine {
    to { background-position: 200% center; }
}

/* Emotionale Beschreibung */
.hero-description {
    font-size: clamp(1.2rem, 2.15vw, 1.5rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    margin-top: clamp(16px, 3vw, 32px);
    font-weight: var(--font-medium);
    max-width: 48ch;
    letter-spacing: 0.01em;
}

.hero-description strong {
    color: var(--color-accent);
    font-weight: var(--font-semibold);
}

/* ======================================== 
   RECHTE SEITE - VISUELLER IMPACT
   ======================================== */
.hero-visual-content {
    position: relative;
    animation: fadeInRight 1s ease-out 0.2s both;
}

/* Mystery Cards Stack - Interaktiv */
.mystery-cards-showcase {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.mystery-card {
    position: absolute;
    width: 320px;
    height: 480px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        0 10px 30px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.12);
    transition:
        transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.35s ease,
        opacity 0.35s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    --card-rotation: 0deg;
    --card-raise: 0px;
    --card-scale: 1;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --card-offset-x: 0px;
    transform:
        translateX(calc(-50% + var(--card-offset-x)))
        translateY(var(--card-raise))
        rotate(var(--card-rotation))
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        scale(var(--card-scale));
}

.mystery-card:nth-child(1) {
    top: 0;
    left: 50%;
    --card-rotation: -6deg;
    --card-offset-x: -140px;
    z-index: 1;
    background-image: 
        radial-gradient(ellipse at center bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.8) 100%),
        linear-gradient(180deg, rgba(255,215,0,0.08) 0%, transparent 30%, rgba(97,0,0,0.6) 100%),
        url('https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Untitled-design-20.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mystery-card:nth-child(2) {
    top: 60px;
    left: 50%;
    --card-rotation: 0deg;
    --card-offset-x: 0px;
    z-index: 2;
    background-image: 
        linear-gradient(135deg, rgba(139,69,19,0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(97,0,0,0.5) 100%),
        radial-gradient(ellipse at top right, rgba(255,215,0,0.15) 0%, transparent 70%),
        url('https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Untitled-design-22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mystery-card:nth-child(3) {
    top: 120px;
    left: 50%;
    --card-rotation: 6deg;
    --card-offset-x: 140px;
    z-index: 3;
    background-image: 
        linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.2) 30%, rgba(97,0,0,0.4) 100%),
        radial-gradient(circle at center, rgba(255,215,0,0.05) 0%, transparent 60%),
        url('https://mysteryerlebnis.de/wp/wp-content/uploads/2025/10/Untitled-design-21.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (hover: hover) and (pointer: fine) {
    .mystery-card:hover {
        --card-raise: -22px;
        --card-scale: 1.06;
        --tilt-x: 0deg;
        --tilt-y: 0deg;
        z-index: 11;
        box-shadow:
            0 36px 90px rgba(0,0,0,0.5),
            0 18px 48px rgba(255,215,0,0.2),
            inset 0 1px 0 rgba(255,255,255,0.24);
    }
}

.mystery-card.is-active {
    --card-raise: -24px;
    --card-scale: 1.08;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.55),
        0 20px 52px rgba(255,215,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.28);
    border-color: rgba(255,215,0,0.3);
    z-index: 12;
}

.mystery-card.is-dimmed {
    opacity: 0.7;
    filter: blur(0.3px) saturate(0.9);
    z-index: 1;
}

.mystery-card.is-resting {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.card-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,215,0,0.2);
    border-radius: 999px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-description {
    color: #FFFAFA;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 60px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.card-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    display: inline-block;
    color: var(--color-accent);
}

.card-price {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-badge-bottom {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,215,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mystery-hint {
    color: #FFFAFA;
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.02em;
}

.price-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.price-value {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
}


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

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

/* ======================================== 
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 60px;
    }
    
    .mystery-card {
        width: 280px;
        height: 420px;
    }
}

@media (max-width: 968px) {
    .booking-hero {
        min-height: auto;
        padding: 60px 0 20px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
    }
    
    .hero-emotional-content {
        text-align: center;
    }
     .card-badge-bottom {
         bottom: 20px;
         padding-top: 18px;
     }
     
     .mystery-hint {
         font-size: 0.75rem;
     }
     
     .card-features {
         margin-bottom: 80px;
     }
 
    .mystery-cards-showcase {
        height: 480px;
        margin: 0 auto;
        width: 100%;
        max-width: clamp(240px, 76vw, 320px);
        padding: 0 clamp(12px, 4vw, 24px);
        box-sizing: border-box;
    }

    .is-inline-mobile + .hero-description {
        margin-top: clamp(48px, 12vw, 80px);
    }
 
    .mystery-card {
        width: 100%;
        max-width: clamp(220px, 70vw, 280px);
        height: 420px;
        left: 50%;
        --card-offset-x: 0px;
        padding-bottom: 120px;
    }
 
     .mystery-card:nth-child(1) {
         top: 0;
         --card-rotation: -3deg;
         --card-offset-x: clamp(-80px, -15vw, -40px);
     }
 
     .mystery-card:nth-child(2) {
         top: 36px;
         --card-rotation: 0deg;
         --card-offset-x: 0px;
     }
 
     .mystery-card:nth-child(3) {
         top: 72px;
         --card-rotation: 3deg;
         --card-offset-x: clamp(40px, 15vw, 80px);
     }

    .card-description {
        min-height: 72px;
    }
}
 
@media (max-width: 640px) {
    .booking-hero {
        padding: 88px 0 24px;
        padding-top: calc(88px + env(safe-area-inset-top));
    }
    
    .card-badge-bottom {
        bottom: 16px;
        padding-top: 16px;
    }
    
    .mystery-hint {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .card-features {
        margin-bottom: 100px;
    }
    
     .hero-headline {
         font-size: 2rem;
        margin-bottom: 24px;
    }

    .hero-headline .headline-emotion,
    .hero-headline .headline-mystery {
        display: inline;
    }

    .hero-headline .headline-mystery {
        margin-left: 6px;
     }

     .hero-description {
         font-size: 1rem;
     }

    .mystery-cards-showcase {
        height: 360px;
        width: 100%;
        max-width: clamp(220px, 84vw, 280px);
        padding: 0 clamp(16px, 7vw, 28px);
        box-sizing: border-box;
    }

    .is-inline-mobile + .hero-description {
        margin-top: clamp(40px, 14vw, 64px);
    }
 
    .mystery-card {
        width: 100%;
        max-width: clamp(200px, 78vw, 260px);
        height: 340px;
        padding: 24px;
        --card-offset-x: 0px;
        padding-bottom: 120px;
    }

     .card-title {
         font-size: 1.5rem;
     }

     .card-features {
         display: none;
     }

    .mystery-card:nth-child(1) {
        top: 0;
        --card-rotation: -2deg;
        --card-offset-x: clamp(-60px, -12vw, -30px);
    }

    .mystery-card:nth-child(2) {
        top: 26px;
        --card-rotation: 0deg;
        --card-offset-x: 0px;
    }

    .mystery-card:nth-child(3) {
        top: 52px;
        --card-rotation: 2deg;
        --card-offset-x: clamp(30px, 12vw, 60px);
    }

    .card-description {
        min-height: 80px;
    }
 }

/* Extra kleine Screens - Mehr Platz für Mystery-Hints */
@media (max-width: 480px) {
    .mystery-card {
        height: 360px !important;
        padding-bottom: 140px !important;
    }
    
    .mystery-cards-showcase {
        height: 380px !important;
    }
    
    .card-features {
        margin-bottom: 120px !important;
    }
    
    .card-badge-bottom {
        bottom: 12px !important;
        padding-top: 14px !important;
    }
    
    .mystery-hint {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
}
 
 /* ======================================== 
   PERFORMANCE OPTIMIERUNG
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .headline-mystery,
    .mystery-card {
        animation: none;
    }
    
    .mystery-card:hover {
        transform: translateX(-50%);
    }
}

/* GPU Acceleration */
.mystery-card { will-change: transform, opacity, filter; backface-visibility: hidden; }