/* Basis-Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #e0e0e0;
}

h1 {
    margin-bottom: 20px;
    color: #90caf9;
    text-align: center;
}

form {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #bdbdbd;
}

.header-container {
    position: relative;
    width: 100%;
    /* Nimmt die volle Breite ein, wenn der Platz kleiner als 400px ist */
    max-width: 450px;
    /* Überschreitet nicht 400px */
    margin: 40px auto 20px auto;
    /* Zentriert den Container horizontal und sorgt für vertikale Abstände */
}

/* Fixed Dropdown-Menü oben links – gleiche Position wie bei index.html */
.menu-container {
    position: relative;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
    color: #e0e0e0;
    user-select: none;
    padding: 5px;
}

/* Aktueller Seitentitel neben dem Hamburger-Button */
#current-page {
    font-size: 16px;
    margin-left: 5px;
    color: #e0e0e0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #1e1e1e;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a {
    display: block;
    color: #e0e0e0;
    padding: 8px;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #2e2e2e;
}

.header-container img {
    width: 150px;
    height: auto;
}

.about-section {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%;
    max-width: 500px;
}

.about-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #90caf9;
    margin: 0 0 10px 0;
}

.about-section p {
    font-size: 16px;
    color: #bdbdbd;
    line-height: 1.5;
    margin: 0;
}

/* Liste für Key Features */
.features-list {
    font-size: 16px;
    color: #bdbdbd;
    margin: 0;
    padding-left: 20px;
}

/* Footer */
.footer {
    margin-top: 15px;
    font-size: 16px;
    color: #bdbdbd;
    text-align: center;
    margin: 10px 0 20px 0;
}