/* pages/forum/css/style.css */

/* Container für das gesamte Forum - Isoliert Styles */
.forum-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in-out;
}

/* Header */
.forum-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forum-title {
    font-family: 'Orbitron', sans-serif; /* Falls Orbitron geladen ist, sonst Fallback */
    font-size: 28px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-highlight {
    color: var(--accent-magenta, #ff00ff);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.forum-subtitle {
    color: #8899a6;
    font-size: 13px;
    margin-top: 5px;
}

/* Action Button */
.btn-forum-action {
    background: transparent;
    border: 1px solid var(--accent-cyan, #00ffff);
    color: var(--accent-cyan, #00ffff);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-forum-action:hover {
    background: var(--accent-cyan, #00ffff);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* Grid Layout */
.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Kategorie Karte */
.forum-card-link {
    text-decoration: none;
    display: block;
}

.forum-card {
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid #2f374d;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.forum-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-magenta, #ff00ff);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: rgba(25, 30, 50, 0.9);
}

/* Icon links */
.fc-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-cyan, #00ffff);
    transition: 0.3s;
}

.forum-card:hover .fc-icon {
    background: var(--accent-cyan, #00ffff);
    color: #000;
}

/* Text Inhalt */
.fc-content h3 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.fc-content p {
    color: #8899a6;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Pfeil rechts */
.fc-arrow {
    margin-left: auto;
    color: #444;
    transition: 0.3s;
}

.forum-card:hover .fc-arrow {
    color: #fff;
    transform: translateX(5px);
}

/* Leerzustand */
.forum-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: rgba(0,0,0,0.2);
    border: 1px dashed #444;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}

.forum-empty i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}