/* CSS Datei - angepasst für modernes, responsives Verhalten */
/* BOS Medien - bos-medien.com */

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

/* Seite nimmt vollen Viewport ein */
html, body {
    height: 100%;
    font-family: Verdana, Tahoma, Arial, sans-serif;
    font-size: 0.8em;
    color: #000;
    background-color: #fff;
}

/* Flex-Wrapper zur Zentrierung */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px); /* Footer-Höhe einkalkulieren */
}

/* Bild-Container */
#wrap {
    background: url(../images/willkommen.jpg) no-repeat center center;
    background-size: contain;
    width: 169px;
    height: 75px;
}

/* Footer */
#footer {
    text-align: center;
    font-size: 1.0em;
    color: #333;
    padding: 20px 10px;
}

/* Links im Footer */
#footer a {
    color: #333;
    text-decoration: none;
}
#footer a:hover {
    color: #339933;
}

/* Responsive Bildanpassung */
@media (max-width: 400px) {
    #wrap {
        width: 90vw;
        height: auto;
        aspect-ratio: 328 / 368;
    }
}

/* Impressum-Layout */
#imprint {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Verdana, Tahoma, Arial, sans-serif;
    font-size: 1.0em;
    color: #000;
    line-height: 1.6;
}

#imprint h2 {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #222;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

#imprint h3 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #333;
}

#imprint p {
    margin-bottom: 15px;
    text-align: justify;
}

#imprint article {
    margin-bottom: 25px;
}
