/* Fonts */
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, .brand-font {
    font-family: 'Oswald', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #22d3ee;
    border-radius: 4px;
}

/* Background Zoom Animation */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slowZoom 20s infinite alternate linear;
}

/* HERO SLIDESHOW STYLES */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Langsamer Übergang (2s) und langsame Bewegung (10s) */
    transition: opacity 2s ease-in-out, transform 10s ease-out;
    transform: scale(1.15); /* Startet leicht reingezoomt */
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1); /* Zoomt sanft raus */
    z-index: 1;
}

/* HOLO BOX SHIMMER ANIMATION */
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.animate-shimmer {
    animation: shimmer 4s infinite;
}


/* Glassmorphism Classes are handled via Tailwind backdrop-blur utilities,
   but we add some specific glow effects here */

.glow-text {
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

/* Button Effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

/* Navbar Transition Background */
.nav-scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}