/* =========================
   Reset & Basis
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .image-wrapper {
        padding: 0.5rem;
    }
}

@supports (-webkit-touch-callout: none) {
    .image-wrapper img {
        max-width: 100% !important;
        max-height: 70vh !important;
        width: auto !important;
        height: auto !important;
    }
}

html,
body {
    height: 100%;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* =========================
   Header
   ========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
    height: 250px;

    border-bottom: 1px solid #ddd;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    width: 250px;
    height: 250px;
}

.logo-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   Main Content
   ========================= */
.page-logo {
    padding-bottom: 60px; /* Platz für den Footer */
    min-height: 100vh; /* Volle Viewport-Höhe */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.page {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px; /* Platz für fixierten Footer */
}

.page-ds {
    align-items: center;
    justify-content: center;
    padding-bottom: 60px; /* Platz für fixierten Footer */
}

.content {
    max-width: 800px;
    width: 100%;
    padding: 1rem;
}

.content h1 {
    margin-top: 0;
}

.image-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
}

/* =========================
   Footer
   ========================= */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    font-size: 0.9rem;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-nav a:hover,
.footer-nav a:focus {
    text-decoration: underline;
}
