@media (max-width: 767px) {
    .fade-overlay-left,
    .fade-overlay-right {
        width: 3rem !important;
    }
}
/* Mobile: Schwächerer Fade-Overlay im Logo-Carousel */
@media (max-width: 767px) {
    .fade-overlay-left,
    .fade-overlay-right {
        opacity: 1 !important;
    }
}
/* Mobile: Logos Karussell weniger Blur */
@media (max-width: 767px) {
    .rounded-lg {
        border-radius: 0.5rem !important;
        /* Weniger Blur für Logos */
        box-shadow: 0 0 8px rgba(168,85,247,0.08) !important;
    }
}
.hero-logo-float {
    animation: hero-float 3s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Mobile Logo Size */
@media (max-width: 767px) {
    .hero-logo-float {
        max-width: 400px !important;
    }
}
.hero-logo-float {
    animation: hero-float 3s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.font-anton {
    font-family: 'Anton', sans-serif !important;
}
/* css/style.css */

@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Anton-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Montserrat-Light.ttf') format('ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat-Regular.ttf') format('ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Montserrat-SemiBold.ttf') format('ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Montserrat-ExtraBold.ttf') format('ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Montserrat-Black.ttf') format('ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/Montserrat-ExtraBoldItalic.ttf') format('ttf');
    font-display: swap;
}

/* iOS Stabilization Fixes */
html {
    background-color: #05020a;
    margin: 0;
    padding: 0;
    overscroll-behavior-y: none;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #05020a;
    color: white;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100dvh;
    overscroll-behavior-y: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Tailwind overrides for iOS stabilization */
.min-h-screen {
    min-height: 100dvh !important;
}
.h-screen {
    height: 100dvh !important;
}

/* Navigation Fixed IOS Bug Fix */
.ios-nav-fix {
    top: env(safe-area-inset-top);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0718;
}
::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d946ef;
}

.neon-text {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.7), 0 0 20px rgba(168, 85, 247, 0.5);
}
.neon-box {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3), inset 0 0 15px rgba(139, 92, 246, 0.1);
}

/* Neon Button Style Override to match React Component */
.neon-btn {
    position: relative;
    overflow: hidden;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    cursor: pointer;
    z-index: 20;
    display: inline-block;
}

@media (min-width: 768px) {
    .neon-btn {
        font-size: 1rem;
    }
}

.neon-btn:hover {
    border-color: #a78bfa;
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.6);
}

.neon-btn.primary {
    background: linear-gradient(to right, rgba(88, 28, 135, 0.8), rgba(112, 26, 117, 0.8));
    color: white;
}

.neon-btn.primary:hover {
    filter: brightness(1.1);
}

/* Shimmer Effect for Button */
.shimmer-effect {
    animation: shimmer 1s infinite;
}

/* Section Divider Styles */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) {
    .section-divider {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 3rem;
    }
}

.section-divider .line-l {
    height: 1px;
    width: 25%;
    background: linear-gradient(to right, transparent, #a855f7, #c084fc);
    opacity: 0.7;
}

.section-divider .line-r {
    height: 1px;
    width: 25%;
    background: linear-gradient(to left, transparent, #a855f7, #c084fc);
    opacity: 0.7;
}

.section-divider .content {
    margin: 0 1rem;
    text-align: center;
}

.section-divider h2 {
    font-size: 2.25rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.05em;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #a855f7, white, #3b82f6);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    padding: 1rem 0;
    text-transform: uppercase;
    line-height: 1;
}

@media (min-width: 768px) {
    .section-divider h2 {
        font-size: 3.75rem;
    }
}

.section-divider .underline-glow {
    position: relative;
    margin: 0 auto;
    height: 2px;
    width: 8rem;
    background: linear-gradient(to right, transparent, #e879f9, transparent);
    box-shadow: 0 0 15px rgba(232, 121, 249, 0.9);
}
@media (min-width: 768px) {
    .section-divider .underline-glow {
        width: 12rem;
    }
}

.section-divider .underline-glow .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, white, transparent);
    opacity: 0.5;
}

/* Form inputs font size fix for iOS */
.input-ios-fix {
    font-size: 16px !important;
}

/* Scroll margin for anchor links */
#start, #impressionen, #programm, #kontakt {
    scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    #start, #impressionen, #programm, #kontakt {
        scroll-margin-top: 120px;
    }
}

/* Scroll Spy Active Link Styles */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: #c084fc !important;
    text-shadow: 0 0 8px rgba(192, 132, 252, 0.6);
}

/* Mobile nav link active state */
@media (max-width: 767px) {
    .mobile-link .nav-link.active {
        color: #e879f9 !important;
        text-shadow: 0 0 10px rgba(232, 121, 249, 0.8);
    }
}
