html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #F4E1E0;
    color: #0E1627;
}

main {
    flex: 1;
}

header {
    padding: 2.5em 1.25em; 
    background-color: #0E1627;
    text-align: center;
}

.logo img {
    width: 5em; 
    margin-bottom: 0.625em; }

nav {
    margin-top: 0.625em; 
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 0.625em; 
    list-style: none;
    font-family: Didot, serif;
    background: transparent;
    padding: 0;
}

.navigation a {
    padding: 0.75em 1.25em; 
    color: #F4E1E0;
    text-decoration: none;
    border-radius: 1.25em; 
    transition: background 0.3s;
}

.navigation a:hover,
#akt_tab {
    background-color: #BD8E89;
    color: #0E1627;
}

.site-footer {
    background-color: #0E1627;
    color: #F4E1E0;
    text-align: center;
    padding: 3.75em 1.25em; 
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25em; 
    margin-bottom: 2.5em; 
}

.footer-logo img {
    width: 5em; 
}

.footer-logo p {
    margin: 0.625em 0 0; 
    color: #E5C5C1;
    font-size: 1rem;
}

.footer-info p {
    margin: 0.3125em 0; 
    font-size: 0.95rem;
}

.footer-info a {
    color: #BD8E89;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #E5C5C1;
}

.footer-bottom {
    border-top: 0.0625em solid #7F6269; 
    padding-top: 1.25em; 
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #E5C5C1;
}

.impressum-section {
    text-align: center;
    padding: 3.75em 1.25em; 
    max-width: 43.75em; 
    margin: auto;
    font-family: "Didot", serif;
    color: #0E1627;
}

.impressum-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1.875em; 
    letter-spacing: 0.0625em; 
    color:#7F6269
}

.impressum-section p {
    margin-bottom: 1.25em; 
    font-size: 1rem;
    line-height: 1.6;
}

.impressum-section a {
    color: #BD8E89;
    text-decoration: none;
}

.impressum-section a:hover {
    color: #E5C5C1;
}

.impressum-section .copyright {
    font-size: 0.9rem;
    margin-top: 2.5em; 
    color: #555;
}