/*
Theme Name: JuKi-Theme
Description: Ein WordPress Theme für die Jugendkirche mit Elementor-Integration und Animationen
Version: 1.0.0
Author: JuKi Team
License: GPL v2 or later
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container für den Hauptinhalt */
/* .juki-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}*/

/* Header Kompatibilität */
body.juki-has-header .juki-container {
    margin-top: 0;
}

/* Background Animation Container - nur für Frame Animation */
.juki-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Frame Animation Styles */
.juki-bg-animation #juki-frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Mobile Optimierungen für Frame Animation */
@media (max-width: 768px) {
    .juki-bg-animation #juki-frame-bg {
        object-fit: cover;
    }
    
    .juki-container {
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .juki-bg-animation #juki-frame-bg {
        animation: none !important;
        transition: none !important;
    }
}
