/* Farben */
:root {
    --bg: #f9f9f9;
    --text: #111111;
    --accent: #007aff; /* Apple-Blau */
    --card: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

body.dark {
    --bg: #0e0e11;
    --text: #f0f0f0;
    --card: #16161d;
    --accent: #0af;
    --shadow: rgba(0,0,0,0.5);
}

/* Grundlayout */
body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.logo-wrapper {
    background: var(--bg);
    padding: 12px;
    border-radius: 20px;
    display: flex;
justify-content: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
}


/* Buttons */
button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow);
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

#hero button {
    font-size: 1.1rem;
}

/* Sections */
section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--card);
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Footer optional */
footer {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
}

/* Dark mode toggle */
#mode-toggle {
    background: transparent;
    color: var(--text);
    font-size: 1.5rem;
}
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.server-card {
    background: var(--card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;

}

/* Mobile */
@media (max-width: 800px) {
    .server-grid {
        grid-template-columns: 1fr;
    }
}
