@charset "UTF-8";

/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* Kopfzeile – WEISS */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid #ddd;
}

/* Login/Logout/Konto Buttons */
.left-buttons a,
.left-buttons span {
    margin-right: 12px;
    padding: 8px 14px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.left-buttons a:hover {
    background: #005fcc;
}

/* Hamburger Icon – SCHWARZER Kreis + 3 WEISSE Balken */
.menu-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #000000; /* schwarzer Kreis */
    padding: 10px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background: #ffffff; /* weiße Balken */
    border-radius: 2px;
}

/* Menü (Seitenleiste) */
.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100%;
    background: #2b2b2b;
    color: white;
    padding: 20px;
    box-shadow: -3px 0 10px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 9999;
}

/* Menü geöffnet */
.side-menu.open {
    right: 0;
}

/* Close‑Button – SCHWARZER Kreis + WEISSES X */
.close-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #000000;
    padding: 8px;
    box-sizing: border-box;
    float: right;
    margin-bottom: 20px;
    position: relative;
}

/* Weißes X */
.close-btn::before,
.close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    background: #ffffff;
    transform-origin: center;
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Menülinks */
.side-menu a {
    display: block;
    padding: 12px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #444;
}

.side-menu a:hover {
    color: #00aaff;
}

/* Hauptbereich */
.content {
    text-align: center;
    padding: 40px 20px;
}

.content img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.content p {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Formular */
.form-container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background: #005fcc;
}

/* Fusszeile – WEISS + SCHWARZ + MITTIG + ÜBEREINANDER */
footer {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: 4px 0;
}

footer a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}