/* ===== GRUNDLAYOUT ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-image: url("ChatGPT Image 17. März 2026, 12_44_29.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVIGATION ===== */
.nav-wrapper {
    position: fixed;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 100;
}

.menu-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 12px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 2px;
    position: sticky;
    top: 0;
}

.menu-text {
    color: black;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
}

.nav-wrapper:hover .bar {
    background-color: #e10600;
}

.nav-wrapper:hover .menu-text {
    color: #e10600;
}

/* ===== HERO ===== */
.hero {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

h1 {
    background-color: rgba(0, 0, 100, 1.0);
    padding: 24px 40px;
    margin: 0;
    color: white;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
}

h2 {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 30px;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
}

/* ===== INFO SEKTION ===== */
.info-section {
    background-color: rgba(0, 0, 0, 0.65);
    border-left: 4px solid #e10600;
    border-radius: 8px;
    padding: 24px 32px;
    margin: 40px auto;
    width: 480px;
    color: white;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin: 0 0 14px 0;
    color: #e10600;
}

.info-section p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.Zahlen {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    margin: 40px auto;
    width: 400px;
    border-radius: 10px;
    margin-top: 100px;
}

/* ===== FOOTER ===== */
.simple-footer {
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 2px solid #e10600;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.contact-info p {
    margin: 0;
    color: #ccc;
}

.contact-info a {
    color: #e10600;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}