/* Body & html füllen 100% Höhe */
html, body {
    height: 100%;
    margin: 0;
}

/* Navbar fixiert oben */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* über Content */
}

/* Abstand für fixierte Navbar */
body {
    padding-top: 70px; /* Höhe der Navbar */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main nimmt restliche Höhe ein */
main {
    flex: 1 0 auto;
    padding-bottom: 80px; /* Platz für Footer */
}

/* Footer am unteren Rand */
footer {
    flex-shrink: 0;
    background-color: #f8f9fa;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
}

/* Navbar zentrieren */
.navbar-nav {
    margin: 0 auto;
}

/* Logo über Main zentrieren */
.logo-container {
    text-align: center;
    margin: 30px 0;
}
.logo-container img {
    max-width: 300px; /* Desktop */
    width: 80%; /* Mobil responsive */
    height: auto;
}
