/* ===== BASIS-STYLE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', Arial, sans-serif;
}

/* === HEADER MIT FIXIERUNG === */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    z-index: 1000;
    background: white;
}
.header-divider {
    position: fixed;
    top: 250px; /* Höhe des Headers */
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #46b155; /* Farbe der Linie */
    /*z-index: 1001;*/
}
.header-spacer {
    height: 255px;
}

.video-header {
    width: 100%;
    height: 250px;
}

.video-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 20px;
    background-color: rgba(0,0,0,0.3);
}

.header-text {
    color: white;
    max-width: 900px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.header-text h1 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header-text p {
    font-size: 0.9rem;
    line-height: 0.7;
    margin-bottom: 8px;
}

.header-text .author {
    font-style: italic;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 1rem;
    }
    
    .header-text p {
        font-size: 0.7rem;
    }
}

/* ===== WILLKOMMENS-TEXT ===== */
.text-section,
.welcome-section {
    text-align: center;
    padding: 30px 20px 10px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
}

.welcome-section h1 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    max-width: 800px;
    margin: 0 auto 15px;
}

.text-section p {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

/* ===== LOGO-BUTTONS ===== */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 30px);
    flex-wrap: wrap;
}

.logo-button {
    transition: transform 0.3s ease;
    width: clamp(100px, 45vw, 400px);
}

.logo-button:hover {
    transform: scale(1.2);
}

.logo-image {
    width: 90%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* ===== MOBILE VERSION ===== */
@media (max-width: 768px) {
    .logo-button {
        width: clamp(150px, 35vw, 300px);
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
    }

    .logo-button {
        width: 70%;
    }
}
/* Footer-Stile */
        .footer {
            height: 30px;
            background-color: #808080; /* Grauer Hintergrund */
            color: white; /* Weiße Schrift */
            display: flex;
            justify-content: center; /* Horizontal zentriert */
            align-items: center; /* Vertikal zentriert */
            font-family: Arial, sans-serif;
            font-size: 12px;
            position: fixed; /* Am unteren Bildschirmrand fixiert */
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
        }

        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px; /* Abstand zwischen den Links */
        }

        .footer a:hover {
            text-decoration: underline; /* Hover-Effekt */
        }

        /* Responsive Anpassungen für kleine Bildschirme */
        @media (max-width: 600px) {
            .footer {
                font-size: 10px; /* Kleinere Schrift auf Mobilgeräten */
                height: auto;
                padding: 8px 0; /* Etwas mehr Platz */
                flex-wrap: wrap; /* Zeilenumbruch bei Bedarf */
            }
            .footer a {
                margin: 0 5px; /* Kleinerer Abstand */
            }
        }