/* ===== GLOBAL ===== */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: url('Hintergrund1.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* ===== HEADER ===== */

.header {
    background: rgba(0,0,0,0.65); /* matt, nicht transparent */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.login-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    color: white !important;
    border-radius: 8px;
}

/* ===== HERO ===== */

.hero {
    text-align: center;
    padding: 60px 20px;
    background: none; /* kein Overlay */
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 12px rgba(0,0,0,0.7);
}

/* ===== CONTENT ===== */

.content {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
}

/* ===== CATEGORY ===== */

.category h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* ===== FORUM BOX ===== */

.forum-box {
    background: rgba(0,0,0,0.65); /* matt, klar, nicht transparent */
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: 0.2s;
}

.forum-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.forum-box h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.forum-box p {
    margin: 5px 0 0;
    color: #eaeaea;
}

.count {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    align-self: center;
}

/* ===== FOOTER ===== */

.footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: rgba(0,0,0,0.65); /* matt, klar */
    border-top: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
