* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
color: red;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: linear-gradient(to bottom, #0b0f1a, #111827, #1a1208);
    color: #f5e6c8;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(to bottom, #2b1d0e, #120d07);
    border-bottom: 2px solid #c8a95d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
}

.logo h1 {
    font-size: 2.5rem;
    color: #e7c46a;
    text-shadow: 0 0 8px rgba(231, 196, 106, 0.35);
    letter-spacing: 2px;
}

.logo p {
    margin-top: 6px;
    color: #cbb27b;
    font-size: 1rem;
}

/* Navigation */
nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

nav a {
    display: inline-block;
    text-decoration: none;
    color: #f5e6c8;
    background: linear-gradient(to bottom, #4a3217, #2c1d0d);
    border: 1px solid #a8843d;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.25s ease;
    box-shadow: inset 0 0 8px rgba(255, 215, 100, 0.08);
}

nav a:hover {
    color: #fff3c2;
    border-color: #e7c46a;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(231, 196, 106, 0.25);
}

/* Main */
main {
    width: min(1200px, 92%);
    margin: 40px auto;
}

/* Hero */
.hero {
    background:
        linear-gradient(rgba(10, 10, 18, 0.72), rgba(10, 10, 18, 0.82)),
        url("wow_horde_background_1920x1080.jpg") center/cover no-repeat;

    border: 2px solid #c8a95d;
    border-radius: 12px;
    padding: 120px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
}

.hero h2 {
    font-size: 3rem;
    color: #f0d58a;
    margin-bottom: 14px;
    text-shadow: 0 0 12px rgba(231, 196, 106, 0.25);
}

.hero p {
    font-size: 1.2rem;
    color: #d6c29a;
}

/* Sections allgemein */
section {
    background: linear-gradient(to bottom, rgba(32, 24, 16, 0.92), rgba(18, 13, 7, 0.96));
    border: 1px solid #8f6a2d;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

section h2 {
    color: #e7c46a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(231, 196, 106, 0.35);
    padding-bottom: 10px;
}

/* News Artikel */
.news article {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #c8a95d;
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news article:hover {
    transform: translateX(4px);
    box-shadow: 0 0 14px rgba(231, 196, 106, 0.12);
}

.news h3 {
    color: #f0d58a;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.news p,
.about p {
    color: #e7dcc4;
    line-height: 1.7;
}

/* Footer */
footer {
    text-align: center;
    padding: 22px;
    border-top: 1px solid #8f6a2d;
    background: #120d07;
    color: #bfa878;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {

    header {
        padding: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 20px;
    }

  .status-box {
    text-align: center;
    padding: 50px 30px;
}

.status-box h2 {
    margin-bottom: 20px;
}

.status-box p {
    color: #e7dcc4;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.guild-button {
    display: inline-block;
    text-decoration: none;
    color: #f5e6c8;
    background: linear-gradient(to bottom, #4a3217, #2c1d0d);
    border: 1px solid #a8843d;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.25s ease;
    box-shadow: inset 0 0 8px rgba(255, 215, 100, 0.08);
}

.guild-button:hover {
    color: #fff3c2;
    border-color: #e7c46a;
    box-shadow: 0 0 12px rgba(231, 196, 106, 0.25);
}
}