/*
Theme Name: Waldbaustelle
Author: ChatGPT
Description: Einfaches WordPress Theme mit Hintergrundbild (Baustellen-Waldmotiv). Voll responsiv ohne Buttons oder Links.
Version: 1.0
*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* Zentrierter Inhalt (falls später erweitert) */
.site {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    backdrop-filter: blur(0px);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
}
