/* Grundlegende Einstellungen */
body {
    font-family: 'Poppins', sans-serif; /* Moderner, sauberer Font */
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* Sehr helles Grau */
    color: #333; /* Dunkler Text */
    line-height: 1.6;
}

/* Header/Hero-Bereich */
header {
    background-color: #2c3e50; /* Dunkles, städtisches Blau/Grau */
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content h1 {
    font-size: 3em;
    margin-bottom: 0.1em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-content p {
    font-size: 1.2em;
    font-weight: 300;
}

/* Platzhalter für das Bild, um das moderne Thema zu untermauern */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* Halbtransparentes Bild für den Hintergrund */
    background: url('minecraft-city-background.jpg') no-repeat center center/cover;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1; /* Inhalt über dem Bild */
}

/* Hauptinhalt */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Leichter Schatten für modernen Effekt */
    border-radius: 8px;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #3498db; /* Akzentfarbe (helles Blau) */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Discord Button Styling */
.discord-button {
    display: block;
    width: 300px;
    margin: 20px auto;
    padding: 15px 30px;
    background-color: #7289da; /* Discord-Blau */
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.discord-button:hover {
    background-color: #5b6fb3; /* Dunkler beim Hover */
    transform: translateY(-2px);
}

.small-text {
    text-align: center;
    font-size: 0.8em;
    color: #999;
}

/* Features Liste */
#features ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

#features li {
    flex-basis: 30%;
    background-color: #ecf0f1; /* Sehr helles Grau */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .header-content h1 {
        font-size: 2em;
    }
    #features ul {
        flex-direction: column;
    }
    #features li {
        margin-bottom: 15px;
    }
    .discord-button {
        width: 90%;
    }
}