/* Grundlegendes Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    /* Schwarz */
    color: #ffd700;
    /* Gelb */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container: Aufteilung in zwei Spalten */
.container {
    display: flex;
    width: 90%;
    height: 90%;
    border: 2px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
}

/* Linke Seite: Hero-Bereich */
.hero-section {
    flex: 2;
    background: linear-gradient(to right, #000, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #e5c100;
}

/* Rechte Seite: Navigation */
.navigation-section {
    flex: 1;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navbar li {
    margin: 20px 0;
}

.navbar a {
    text-decoration: none;
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #fff;
}
