/* Grundlegende Resets und Schriftart */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1A1A1A; /* Dunkler Hintergrund */
    --footer-bg: #111111; /* Noch dunklerer Footer */
    --accent-green: #4CAF50; /* Dein leuchtendes Grün (Hauptfarbe) */
    --text-light: #F0F0F0; /* Helle Textfarbe */
    --box-bg: #222222; /* Hintergrund für Infoboxen */
    --font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-family);
    line-height: 1.6;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #66BB6A; /* Helleres Grün beim Hover */
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('minecraft_background_placeholder.jpg') center/cover no-repeat;
    /* TIPP: Ersetze 'minecraft_background_placeholder.jpg' durch ein Bild deines Servers */
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 900px;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    /* Optional: Leichter Schatten, um das Logo hervorzuheben */
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.8));
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFFFFF; /* Weiß für gute Lesbarkeit */
}

/* --- CTA BUTTON --- */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-cta {
    background-color: var(--accent-green);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    border: 2px solid var(--accent-green);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(76, 175, 80, 1);
    background-color: #66BB6A;
}

.ip-address {
    font-size: 1.1em;
    color: var(--text-light);
}

.ip-address span {
    font-weight: 700;
    color: var(--accent-green);
}

.ip-address i {
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s;
}

.ip-address i:hover {
    color: #FFFFFF;
}

/* --- SECTIONS ALLGEMEIN --- */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--accent-green);
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- FEATURE SECTION (INFO BOXES) --- */
.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: var(--box-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 5px solid var(--accent-green);
    transition: background-color 0.3s, transform 0.3s;
}

.feature-box:hover {
    background-color: #2D2D2D;
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3em;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.feature-box h3 {
    color: var(--accent-green);
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* --- SOCIAL SECTION --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.social-button i {
    font-size: 1.5em;
    margin-right: 10px;
}

/* Farbgebung der Social Buttons */
.discord {
    background-color: #5865F2;
    color: white;
}

.youtube {
    background-color: #FF0000;
    color: white;
}

.instagram {
    background-color: #E1306C;
    color: white;
}

.social-button:hover {
    filter: brightness(1.2);
    color: white; /* Stellt sicher, dass die Schrift weiß bleibt */
}

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #AAAAAA;
}

footer a {
    color: #AAAAAA;
    margin: 0 5px;
}

footer a:hover {
    color: var(--accent-green);
}

/* --- RESPONSIVENESS (Mobile Optimierung) --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .logo {
        max-width: 300px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }
}