/* === Grundstruktur === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
}

/* === Topbar === */
.topbar {
    background-color: #003366;
    color: #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.topbar .contact-info {
    display: flex;
    gap: 20px;
}

/* === Header & Navigation === */
header {
    background-color: #00264d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a,
.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
}

nav a:hover,
.dropbtn:hover {
    border-color: white;
}

/* === Login-Button === */
.login-button {
    background-color: #3399ff;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

/* === Dropdown === */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #005bbb;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    right: 0;
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    color: #003366;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* === Burger-Menü === */
.burger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #00264d;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 999;
    }

    nav.active {
        display: flex;
        flex-direction: column;
    }

    nav a,
    .dropbtn {
        padding: 12px;
        width: 100%;
        text-align: left;
        border: none;
    }

    .dropdown-content {
        position: static;
        background-color: #003366;
        box-shadow: none;
    }

    .dropdown-content a {
        color: white;
    }

    .dropdown-content a:hover {
        background-color: #0055aa;
    }
}

/* === Container für Impressum === */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    color: #2c3e50;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
}

/* === Typografie === */
h1 {
    font-size: 28px;
    color: #003366;
    border-bottom: 2px solid #005bbb;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #005bbb;
    margin-top: 30px;
}

h3 {
    color: #333;
    margin-top: 20px;
}

p {
    line-height: 1.7;
    font-size: 16px;
    margin: 10px 0;
}

/* === Footer === */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}