/* =========================================
   Globaler Footer (Impressum & Datenschutz)
   ========================================= */
.site-footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    width: 100%;
    z-index: 10;
}

.footer-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.footer-copyright {
    color: #666666;
    font-size: 0.75rem;
    text-align: center;
    max-width: 1000px;
    line-height: 1.4;
    padding: 0 1rem;
}

.site-footer a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }
    .footer-links {
        gap: 1.5rem;
    }
}

/* =========================================
   Modal (Impressum, Datenschutz, Info)
   ========================================= */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: rgba(10, 20, 15, 0.95);
    border: 1px solid rgba(170, 255, 170, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 650px;
    position: relative;
    color: #cccccc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(170, 255, 170, 0.1);
    animation: modalFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content h2 {
    color: #aaffaa;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(170, 255, 170, 0.3);
}

.modal-content h3 {
    color: #cceeff;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.modal-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-content ul li {
    margin-bottom: 0.5rem;
}

.modal-content strong {
    color: #eaffea;
}

.modal-content a {
    color: #aaffaa;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(170, 255, 170, 0.4);
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-content a:hover {
    color: #cceeff;
    text-decoration-color: #cceeff;
    text-shadow: 0 0 10px rgba(204, 238, 255, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaaaaa;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.close-modal:hover {
    color: #aaffaa;
    text-shadow: 0 0 10px rgba(170, 255, 170, 0.5);
}

.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); border-radius: 4px; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(170, 255, 170, 0.3); border-radius: 4px; }
.modal-content::-webkit-scrollbar-thumb:hover { background: rgba(170, 255, 170, 0.5); }

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        max-height: 85vh;
    }
    .modal-content h2 {
        font-size: 1.5rem;
    }
    .close-modal {
        top: 10px;
        right: 15px;
    }
}

/* =========================================
   Modal Irrlichter
   ========================================= */
.modal-wisps {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 10;
}

.m-modal-wisp-1 { width: 12px; height: 12px; top: 10px; left: 10px; animation: wispWobble 3.5s infinite alternate ease-in-out; }
.m-modal-wisp-2 { width: 8px; height: 8px; top: 30px; left: 35px; animation: wispWobble3 2.5s infinite alternate-reverse ease-in-out; }
.m-modal-wisp-3 { width: 14px; height: 14px; top: 5px; left: 45px; animation: wispWobble2 3.2s infinite alternate ease-in-out; }

/* =========================================
   Hintergrund-Videos (Partner & Kontakt)
   ========================================= */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: right center;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0) 85%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    }
}

/* =========================================
   Content Boxen & Grid-Karten (Partner & Kontakt)
   ========================================= */
.partner-content {
    width: 100%;
    max-width: 900px;
}

.partner-content h1 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 4rem;
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.partner-content p {
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-card {
    display: block;
    text-decoration: none;
    padding: 2rem; 
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.partner-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.5px;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.partner-card p {
    color: #aaaaaa;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.partner-card:hover {
    background: rgba(15, 35, 25, 0.65);
    border-color: rgba(170, 255, 170, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(170, 255, 170, 0.15), inset 0 0 15px rgba(170, 255, 170, 0.08);
}

.partner-card:hover h3 {
    color: #aaffaa;
    text-shadow: 0 0 12px rgba(170, 255, 170, 0.5);
}

.partner-card:hover p {
    color: #e0e0e0;
}

.partner-card .tag {
    color: rgba(170, 255, 170, 0.6);
    font-weight: 400;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.partner-card:hover .tag {
    color: #aaffaa;
    text-shadow: 0 0 10px rgba(170, 255, 170, 0.4);
}

/* =========================================
   Feedback Banner & Modal
   ========================================= */
.feedback-banner {
    position: fixed;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 20, 15, 0.95);
    border: 1px solid rgba(170, 255, 170, 0.4);
    border-right: none;
    color: #aaffaa;
    padding: 15px 15px 15px 10px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1500;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.feedback-banner:hover {
    background-color: rgba(15, 35, 25, 0.95);
    color: #cceeff;
    border-color: #cceeff;
    box-shadow: -4px 0 20px rgba(204, 238, 255, 0.4);
    transform: translateY(-50%) translateX(-5px);
}

.feedback-banner .icon {
    display: inline-block;
    margin-bottom: 10px;
    width: 16px;
    height: auto;
    filter: brightness(1.25) contrast(1.2) drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    .feedback-banner {
        padding: 12px 13px 12px 8px;
        font-size: 0.9rem;
    }
}

/* =========================================
   BawkBox Branding (Werbung) ausblenden
   ========================================= */
#sil-widget-6a32ce5036bbc200131b25a4 a[href*="bawkbox"] {
    display: none !important;
}

/* =========================================
   BawkBox Custom Validation & Success
   ========================================= */
#sil-widget-6a32ce5036bbc200131b25a4 input.bawkbox-error,
#sil-widget-6a32ce5036bbc200131b25a4 textarea.bawkbox-error {
    border: 2px solid #ff5555 !important;
    box-shadow: 0 0 10px rgba(255, 85, 85, 0.4) !important;
    background-color: rgba(255, 85, 85, 0.05) !important;
    transition: all 0.3s ease;
}

#sil-widget-6a32ce5036bbc200131b25a4 .bawkbox-success {
    background-color: #aaffaa !important;
    color: #102418 !important;
    border-color: #aaffaa !important;
    box-shadow: 0 0 15px rgba(170, 255, 170, 0.6) !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
}

/* =========================================
   BawkBox "Weiche" Popups (jQuery Modal) blockieren
   ========================================= */
.jquery-modal,
.jquery-modal.blocker {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}