/* 
   Style definitions for the Stitch - MINT Gera GmbH theme.
   Dynamic styles added to match subpages. 
*/

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(17, 20, 22, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Gradients corresponding to target arenas */
.gradient-dome {
    background: linear-gradient(135deg, #FFB3B3 0%, #BA0C2F 100%);
}
.gradient-vr {
    background: linear-gradient(135deg, #CEB47E 0%, #8C7851 100%);
}
.gradient-escape {
    background: linear-gradient(135deg, #6B4E90 0%, #4A3466 100%);
}
.gradient-fun {
    background: linear-gradient(135deg, #36749D 0%, #00537a 100%);
}
.gradient-laser {
    background: linear-gradient(135deg, #319C8A 0%, #1d5d52 100%);
}

.glow-vr-text {
    background: linear-gradient(135deg, #CEB47E 0%, #F1E4C3 50%, #8C7851 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glow-laser-text {
    background: linear-gradient(135deg, #CEB47E 0%, #F1E4C3 50%, #1d5d52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glow-escape-text {
    background: linear-gradient(135deg, #CEB47E 0%, #F1E4C3 50%, #4A3466 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glow-fun-text {
    background: linear-gradient(135deg, #CEB47E 0%, #F1E4C3 50%, #00537a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glow-dome-text {
    background: linear-gradient(135deg, #CEB47E 0%, #F1E4C3 50%, #BA0C2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow-dome {
    text-shadow: 0 0 10px rgba(255, 179, 179, 0.5);
}
.text-glow-vr {
    text-shadow: 0 0 10px rgba(206, 180, 126, 0.5);
}
.text-glow-laser {
    text-shadow: 0 0 10px rgba(49, 156, 138, 0.5);
}
.text-glow-fun {
    text-shadow: 0 0 10px rgba(54, 116, 157, 0.5);
}
.text-glow-escape {
    text-shadow: 0 0 10px rgba(107, 78, 144, 0.5);
}

/* Hover glow effects matching subpage arenas */
.glow-dome:hover {
    box-shadow: 0 0 20px rgba(186, 12, 47, 0.5);
}
.glow-vr:hover {
    box-shadow: 0 0 30px rgba(206, 180, 126, 0.4);
}
.glow-escape:hover {
    box-shadow: 0 0 20px rgba(107, 78, 144, 0.4);
}
.glow-fun:hover {
    box-shadow: 0 0 20px rgba(54, 116, 157, 0.4);
}
.glow-laser:hover {
    box-shadow: 0 0 20px rgba(49, 156, 138, 0.4);
}

/* Vignette overlays */
.vignette-overlay {
    mask-image: radial-gradient(circle, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 100%);
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0C0F10; 
}

::-webkit-scrollbar-thumb {
    background: #323537; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5B4040; 
}

/* Animations */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-animation {
    animation: floatY 8s ease-in-out infinite;
}

/* Drag utility classes for JS */
.is-dragging {
    cursor: grabbing !important;
    user-select: none;
}

.is-dragging .carousel-card {
    pointer-events: none; /* Prevent image dragging/clicking while swiping */
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
