:root {
    /* Neon & Luxury Palette */
    --main-text-color: #f8f9fa;
    --accent-color: #ff00ff; /* SATTE MAGENTA / ROSA */
    
    /* Ghost-Glass System: Fokus auf das Video */
    --panel-bg: rgba(0, 0, 0, 0.45); /* Etwas dunkler für bessere Lesbarkeit */
    --panel-blur: blur(15px); /* Punktueller Blur nur hinter Text */
}

/* Der Body ist ein reiner Durchlauf zum Video */
body {
    background: #000 !important;
    color: var(--main-text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Das Signature-Video: 100% Brillanz */
#video-bg-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; background: #000;
}

#hero-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; opacity: 0; transition: opacity 2s ease;
}
#hero-video.loaded { 
    opacity: 1.0; /* Das Video ist das Highlight - 100% Sichtbarkeit */
}

.hero-overlay-global {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Nur eine minimale Vignette an den Rändern für Tiefenwirkung */
    background: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

/* Sektions-Logik: KEIN Hintergrund zwischen den Inhalten */
.section-padding { 
    padding: 120px 0; 
    position: relative;
    background: transparent !important; /* Voller Durchblick */
    backdrop-filter: none !important;
}

/* Navigation: Initial transparent, wird beim Scrollen sichtbar */
.navbar {
    background-color: transparent;
    backdrop-filter: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    letter-spacing: 5px;
    text-shadow: 0 0 20px var(--accent-color);
    font-weight: 900;
    color: var(--accent-color) !important;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .navbar-brand {
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Typography: Maximale Kraft gegen das Video-Highlight */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.15em;
    color: var(--accent-color);
    /* Doppelter Glow/Schatten für krasse Abhebung vom Video */
    text-shadow: 0 0 15px var(--accent-color), 0 4px 15px rgba(0,0,0,1);
    text-transform: uppercase;
    font-weight: 950;
}

p, li {
    line-height: 1.9;
    color: #fff;
    /* Glasklarer Kontrast durch schwarzen Kernschatten */
    text-shadow: 0 2px 10px rgba(0,0,0,1), 0 0 5px rgba(0,0,0,0.8);
    font-weight: 600;
}

/* Start / Hero Section Fix */
#start {
    min-height: 100vh;
    padding-top: 140px; /* Erhöhtes Platzangebot für die fixed-Navbar */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

html {
    scroll-padding-top: 100px; /* Offset für Scroll-Ziele */
}
.card, .address-card, .table-responsive, .bg-alt-container {
    backdrop-filter: var(--panel-blur);
    background: var(--panel-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6) !important;
    border-radius: 50px;
    padding: 2.5rem;
}

/* Öffnungszeiten Tabelle Fix */
.opening-hours-table {
    background: transparent !important;
    color: #fff !important;
    --bs-table-bg: transparent !important;
    margin-bottom: 0;
}

.table-responsive {
    padding: 0;
    border: 2px solid var(--accent-color) !important;
    overflow: hidden;
}

.opening-hours-table td {
    background: transparent !important;
    color: #fff !important;
}

.opening-hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.current-day {
    background: rgba(255, 0, 255, 0.25) !important; /* Magenta Glow */
    text-shadow: 0 0 25px var(--accent-color);
}

/* Google Maps Fix */
.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(30%) brightness(100%) contrast(90%);
    border-radius: 50px;
}

/* Icon Visibility & Glow - MASSIVE VERBESSERUNG */
.icon-glow {
    color: #ffffff !important; /* Weißer Kern für maximale Sichtbarkeit */
    filter: drop-shadow(0 0 5px var(--accent-color)) 
            drop-shadow(0 0 15px var(--accent-color)) 
            drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    transition: all 0.3s ease;
    display: inline-block;
}

.icon-glow:hover {
    filter: drop-shadow(0 0 10px #ffffff) 
            drop-shadow(0 0 25px var(--accent-color)) 
            drop-shadow(0 0 50px var(--accent-color));
    transform: scale(1.15) rotate(5deg);
}

/* Presse-Card Styling */
.presse-card {
    background: rgba(20, 20, 30, 0.6) !important;
    border: 1px solid rgba(255, 0, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.presse-card:hover {
    background: rgba(255, 0, 255, 0.05) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-5px);
}

.presse-img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 0, 255, 0.2);
}

.presse-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.presse-card:hover .presse-img {
    transform: scale(1.1);
}

/* Partner Links */
.partner-link {
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
}

.partner-link:hover {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Slideshow - Glasklar eingerahmt */
.slideshow-container {
    height: 550px; border-radius: 50px; overflow: hidden;
    border: 3px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
    position: relative;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide-img.active {
    opacity: 1;
    z-index: 2;
}

/* Buttons: Neon-Explosion */
.btn-accent { 
    background-color: var(--accent-color); 
    color: #fff; border: none; font-weight: 900; letter-spacing: 2px;
    box-shadow: 0 0 30px var(--accent-color);
}
.btn-accent:hover { 
    background-color: #fff; color: var(--accent-color);
    box-shadow: 0 0 50px var(--accent-color); transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(20px);
        margin-top: 1rem; padding: 2rem; border-radius: 30px;
    }
    .section-padding { padding: 60px 0; }
    .display-1 { font-size: 3rem; }
    #start { padding-top: 80px; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 10px; }
