/* Enhanced Glassmorphism Design System */
/* Optimized for both aesthetics and readability */

:root {
    /* Glassmorphism variables - halbtransparent schwarz mit backdrop-filter blur 10px */
    --glass-background: rgba(0, 0, 0, 0.5);
    --glass-background-hover: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-hover: rgba(255, 255, 255, 0.4);
    --glass-blur: 10px;
    --glass-blur-strong: 10px;
    --glass-blur-extra: 10px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
    --glass-inset-light: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    --glass-gradient-subtle: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.4) 100%);
}

/* Base glassmorphism mixin - halbtransparent */
.glass-card {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--glass-shadow),
        var(--glass-inset-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--glass-gradient-subtle);
    pointer-events: none;
    opacity: 0.6;
}

.glass-card:hover {
    background: var(--glass-background-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 
        var(--glass-shadow-hover),
        var(--glass-inset-light);
    transform: translateY(-2px);
}

/* Enhanced Location Cards - halbtransparent schwarz */
.location__card {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 
        var(--glass-shadow),
        var(--glass-inset-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle gradient overlay for depth */
.location__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.5;
}

.location__card:hover {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 100%);
    border-color: var(--glass-border-hover);
    box-shadow: 
        var(--glass-shadow-hover),
        var(--glass-inset-light);
    transform: translateY(-4px) scale(1.01);
}

/* Content contrast enhancement */
.location__card-header {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    margin: calc(var(--spacing-lg) * -1) calc(var(--spacing-lg) * -1) var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.location__card-header h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.location__card-content {
    position: relative;
    z-index: 1;
}

.location__item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.location__item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.location__item strong {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: block;
    margin-bottom: 2px;
}

/* Special card variants with colored glass */
.location__card--vip {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.location__card--vip::before {
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
}

.location__card--vip:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        var(--glass-shadow-hover),
        var(--glass-inset-light);
}

.location__card--accessibility {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.15) 0%,
        rgba(34, 197, 94, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.location__card--accessibility::before {
    background: radial-gradient(
        circle at top right,
        rgba(34, 197, 94, 0.2) 0%,
        transparent 70%
    );
}

.location__card--accessibility:hover {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.2) 0%,
        rgba(34, 197, 94, 0.08) 100%);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.3),
        var(--glass-inset-light);
}

/* Direct embedded map without glass card */
.location__map-wrapper {
    grid-column: span 1;
    padding: 0;
}

.location__map-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-md);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location__map:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.location__map iframe {
    filter: contrast(1.1) brightness(0.95) saturate(1.1);
    transition: filter 0.3s ease;
    border-radius: 14px;
}

.location__map:hover iframe {
    filter: contrast(1.15) brightness(1) saturate(1.2);
}

/* Apply glassmorphism to other sections */

/* Premium Ticket Cards - Website-Style konform */
.ticket-card {
    position: relative;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(var(--glass-blur-strong)) saturate(150%) brightness(1.1);
    -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(150%) brightness(1.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    margin: 0 0 var(--spacing-lg) 0;
    padding: 0;
    min-height: 580px;
    height: 580px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Premium Glassmorphism Card Accent */
.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse 120% 80% at 50% 0%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    ), radial-gradient(
        ellipse 120% 80% at 50% 100%,
        rgba(255, 193, 7, 0.05) 0%,
        transparent 60%
    );
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.ticket-card:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.7),
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.01);
}

/* Premium "Beliebt" Badge - Website-Style */
.ticket-card--featured::after {
    content: "★ Beliebt";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, 
        var(--color-primary) 0%, 
        #dc2626 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    z-index: 30;
    white-space: nowrap;
}

/* Featured Card Enhancement - Glassmorphism */
.ticket-card--featured {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.7),
        0 6px 32px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.ticket-card--featured:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.8),
        0 10px 48px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

/* Badge ist jetzt statisch für bessere Sichtbarkeit */

/* Enhanced Featured Card Styling - Rot wie Website-Farbe */
.ticket-card--featured {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(20, 10, 10, 0.97) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 16px 60px rgba(0, 0, 0, 0.8),
        0 6px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hover Effects - Rote Akzente */
.ticket-card:hover {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(20, 15, 15, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ticket-card--featured:hover {
    border-color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(25, 10, 10, 0.99) 100%);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.9),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Premium Glassmorphism Content Layout */
.ticket-card .ticket-card__content {
    position: relative;
    z-index: 5;
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.ticket-card .ticket-card__header {
    margin-bottom: var(--spacing-lg);
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-card .ticket-card__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.ticket-card .ticket-card__price {
    margin-bottom: var(--spacing-xl);
    height: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.ticket-card .ticket-card__amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.8),
        0 1px 4px rgba(0, 0, 0, 0.3);
}

.ticket-card .ticket-card__period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Glowing Price Effect */
.ticket-card .ticket-card__amount::after {
    content: attr(data-price);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 193, 7, 0.3);
    filter: blur(8px);
    z-index: -1;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

.ticket-card .ticket-card__period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.ticket-card .ticket-card__features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.ticket-card .ticket-card__features li {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-left: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.ticket-card .ticket-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.8);
}

.ticket-card .ticket-card__features li:last-child {
    margin-bottom: 0;
}

.ticket-card .ticket-card__features li {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-left: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.ticket-card .ticket-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.8);
}

.ticket-card .ticket-card__features li:last-child {
    margin-bottom: 0;
}

/* Premium Call-to-Action - Full Width Button */
.ticket-card .ticket-card__cta {
    margin-top: auto;
    padding: 0;
    text-align: center;
    flex-shrink: 0;
    align-self: stretch;
}

/* Direct Button Styling */
.ticket-card__button {
    display: block !important;
    background: linear-gradient(135deg, 
        #DC143C 0%, 
        #d32f2f 100%) !important;
    color: white !important;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
    margin: 0;
}

.ticket-card__button:hover {
    background: linear-gradient(135deg, 
        #b91c1c 0%, 
        #991b1b 100%) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.ticket-card .ticket-card__button,
.ticket-card .btn-primary,
.ticket-card .ticket-card__cta {
    display: block;
    background: linear-gradient(135deg, 
        var(--color-primary) 0%, 
        #d32f2f 100%);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
}

.ticket-card .ticket-card__button:hover,
.ticket-card .btn-primary:hover,
.ticket-card .ticket-card__cta:hover {
    background: linear-gradient(135deg, 
        #b91c1c 0%, 
        #991b1b 100%);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.ticket-card .ticket-card__button::before,
.ticket-card .btn-primary::before,
.ticket-card .ticket-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.ticket-card .ticket-card__button:hover::before,
.ticket-card .btn-primary:hover::before,
.ticket-card .ticket-card__cta:hover::before {
    left: 100%;
}

/* Mobile Responsive - Plakative Ticket Cards */
@media (max-width: 992px) {
    .ticket-card {
        min-height: 520px;
        height: 520px;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .ticket-card {
        min-height: 480px;
        height: auto;
    }
    
    .ticket-card .ticket-card__content {
        padding: var(--spacing-lg);
    }
    
    .ticket-card .ticket-card__title {
        font-size: 1.3rem;
    }
    
    .ticket-card .ticket-card__amount {
        font-size: 2.5rem;
    }
    
    .ticket-card .ticket-card__features {
        min-height: 200px;
    }
    
    .ticket-card--featured::after {
        top: -20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Event Highlights Mobile */
    .section-header--centered {
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-header--centered .section__title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-header--centered .section__subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
}

/* Event Highlights Section - Zentrierte Darstellung */
.section-header--centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) auto;
}

.section-header--centered .section__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-header--centered .section__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Event Cards - halbtransparent schwarz */
.event-card,
.individual-event-card {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--glass-shadow),
        var(--glass-inset-light);
}

/* Session Cards - halbtransparent schwarz */
.session-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.session-card:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Partner Cards - Removed glassmorphism, display directly over background */
.partner__tier {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-lg);
}

.partner__tier-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* FAQ Items - halbtransparent schwarz */
.faq__item {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq__item[open] {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced readability for all glass elements */
.glass-text-enhanced {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Video Gallery Items - halbtransparent schwarz */
.gallery__item--video {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset-light);
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Flexible height based on content */
    height: auto;
    min-height: 200px;
    max-height: 500px;
}

.gallery__item--video:hover {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 100%);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-light);
}

/* Video content within glass cards maintains aspect ratio */
.gallery__item--video .gallery__video,
.gallery__item--video .gallery__video-reviews {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.8);
}

/* Portrait videos get proper vertical space */
.gallery__item--video.gallery__item--portrait {
    max-height: 600px;
    width: 100%;
}

.gallery__item--video.gallery__item--portrait .gallery__video,
.gallery__item--video.gallery__item--portrait .gallery__video-reviews {
    max-height: 580px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --glass-blur: 8px;
        --glass-blur-strong: 12px;
    }
    
    .location__card {
        backdrop-filter: blur(8px) saturate(150%);
        -webkit-backdrop-filter: blur(8px) saturate(150%);
    }
    
    .gallery__item--video {
        max-height: 400px;
    }
    
    .gallery__item--video.gallery__item--portrait {
        max-height: 450px;
    }
}

/* Performance optimization for older devices */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .glass-card,
    .location__card,
    .ticket-card,
    .event-card,
    .session-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(20, 20, 20, 0.95);
    }
}