/* Allgemeines Styling */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

/* Navigation */
nav {
    background-color: #000;
    padding: 20px 0; /* Mehr Abstand nach oben und unten */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}   

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Banner in der Navbar */
.banner {
    height: 80px; /* Logo größer machen */
    max-width: 100%; /* Maximale Breite, um das Logo auf verschiedenen Bildschirmgrößen zu skalieren */
    filter: brightness(1.2); /* Helligkeit erhöhen, damit es auf dem dunklen Hintergrund auffällt */
}

/* Navigations-Links */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    background-color: #000;
    border-radius: 5px;
}

/* Hero-Bereich (Startseite) */
.hero {
    padding: 150px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: #007bff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive Design für Handys */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .banner {
        height: 40px;
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    .hero {
        padding: 100px 20px;
    }
}

/* Hamburger-Icon */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;  /* Über anderen Elementen */
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: white;
        text-decoration: none;
        border-top: 1px solid #000;
    }

    .nav-links li a:hover {
        background-color: #444;
    }

    .nav-links.active {
        display: flex;
    }
}
.news-section {
    padding-top: 130px; /* Mehr Abstand, um Platz für die Navigation zu schaffen */
    text-align: left;
    margin: 0 auto;
    max-width: 1200px;
}
.game-section {
    padding-top: 130px; /* Mehr Abstand, um Platz für die Navigation zu schaffen */
    text-align: left;
    margin: 0 auto;
    max-width: 1200px;
}

/* Game Items */
.game-item {
    background-color: #333;  /* Dunkelgrauer Hintergrund */
    color: #fff;  /* Weiße Schriftfarbe */
    padding: 20px;  /* Innenabstand für den Text */
    margin: 0px 0;  /* Abstand zwischen den Game-Items */
    border-radius: 15px;  /* Abgerundete Ecken */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  /* Optionaler Schatten für einen besseren Look */
}

/* Game-Bilder */
.game-item img.game-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 10px;
}

.game-item h2 {
    margin-top: 0px;  /* Hier den oberen Abstand verringern */
}

/* Über uns Bereich */
.about-us-section {
    padding: 50px 20px;
    background-color: #1c1c1c;  /* Dunkles Hintergrund */
    color: #fff;  /* Helle Schriftfarbe */
    text-align: center;
}

.about-us-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Inhalt der Seite */
.about-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Textbereich */
.text-content {
    width: 50%;
    text-align: left;
}

.text-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;  /* Hellere Schrift für den Text */
}

/* Bildbereich */
.image-content {
    width: 40%;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);  /* Schatten, um das Bild hervorzuheben */
}

/* Responsives Design */
@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .team-image {
        width: 80%;
        margin: 0 auto;
    }
}

/* Team-Mitglieder Sektion */
.team-section {
    padding: 50px 20px;
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Container für Team-Mitglieder */
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Macht Platz zwischen den Team-Mitgliedern */
    gap: 40px; /* Abstand zwischen den Team-Mitgliedern */
}

/* Einzelnes Team-Mitglied */
.team-member {
    width: 45%; /* Jedes Mitglied nimmt 45% der Breite ein */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333; /* Optional: Hintergrundfarbe für das Team-Mitglied */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.team-photo {
    width: 120px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.team-info {
    text-align: left;
    max-width: 600px;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* Responsives Design: Wenn der Bildschirm kleiner als 768px ist, werden die Mitglieder untereinander angezeigt */
@media (max-width: 768px) {
    .team-member {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .team-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Allgemeine Einstellungen */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
#navbar {
    background-color: #000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
}

.nav-links a.active {
    color: #ff5c5c;
}

/* Kontakt-Bereich */
.contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-section h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
}

button.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.cta-button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Social Media Bereich */
.social-media {
    text-align: center;
    padding: 50px 20px;
    background-color: #1a1a2e;
    color: #fff;
}

.social-media h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
