/* Grundstil */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Roboto", sans-serif;
    background-color: #f6f7f9;
    color: #333;
    line-height: 1.6;
}

/* Container für max. Breite */
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.site-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-subtitle {
    margin: 5px 0 0;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Hauptbereich */
.site-main {
    padding: 40px 0;
}

/* Einzelne Sektionen */
.impressum-section {
    background: white;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impressum-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Überschriften */
.impressum-section h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #0a3d62;
    font-weight: 600;
    border-left: 4px solid #3c6382;
    padding-left: 10px;
}

/* Links */
a {
    color: #0a3d62;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .impressum-section {
        padding: 20px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .site-subtitle {
        font-size: 1rem;
    }
}


/* Footer Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer Links */
.footer-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

