body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('/assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* === Topbar === */
.topbar {
    background-color: #003366;
    color: #e0e0e0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}
.topbar .contact-info {
    display: flex;
    gap: 25px;
}
.topbar a {
    color: #e0e0e0;
    text-decoration: none;
}

/* === Header === */
header {
    background-color: #002b50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 50;
}


/* === Navigation (Desktop) === */
nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
nav a,
nav button.dropbtn {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
nav a:hover,
nav button.dropbtn:hover {
    background-color: #004b8d;
}

/* === Dropdown-Menü === */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    background-color: #005199;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    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: bold;
}
.dropdown-content a:hover {
    background-color: #e0e0e0;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* === Login-Button === */
.login-button {
    background-color: #007bff;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.login-button:hover {
    background-color: #0056b3;
}

/* === Burger-Menü (Mobil) === */
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #002b50;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 100;
    }

    nav.active {
        display: flex;
    }

    nav a,
    nav .dropbtn {
        width: 100%;
        text-align: left;
        padding: 12px;
        border: none;
    }

    .dropdown-content {
        position: static;
        background-color: #003366;
        box-shadow: none;
    }

    .dropdown-content a {
        color: white;
    }

    .dropdown-content a:hover {
        background-color: #0055aa;
    }

    .dropdown:hover .dropdown-content {
        display: none; /* deaktivieren für Touch */
    }

    .dropdown .dropbtn:focus + .dropdown-content,
    .dropdown .dropbtn.open + .dropdown-content {
        display: block;
    }
}

/* === Hauptinhalt === */
.content {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
}

/* === Admin-Link unten === */
.admin-return {
    text-align: center;
    margin-top: 40px;
}
.admin-return a {
    background-color: #003366;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.admin-return a:hover {
    background-color: #0055aa;
}

/* === Footer === */
footer {
    background-color: #003366;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
footer a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: hsl(220, 14%, 96%); /* <– Hier Farbe ändern */
}