/* DYSTNT - Forums Styles */
@import url('../store/store.css');

/* Additional navbar fixes for forums */
.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red);
}

/* Hero adjustments */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 4px;
    font-weight: 300;
}

.hero-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', cursive;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

/* Forums Section */
.forums-section {
    padding: 6rem 2rem;
    background: rgba(21, 21, 21, 0.5);
}

.forums-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--accent-red);
}

.forums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.forum-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    padding: 3rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.forum-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-icon {
    font-size: 3rem;
}

.card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.card-content {
    flex: 1;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.card-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.forum-btn {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
    border: none;
    color: var(--text-primary);
    padding: 1.2rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forum-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* Activity Section */
.activity-section {
    padding: 4rem 2rem;
}

.activity-container {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-feed {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: rgba(0, 212, 255, 0.05);
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-text {
    flex: 1;
    color: var(--text-secondary);
}

.activity-time {
    font-size: 0.9rem;
    color: var(--accent-red);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .forums-grid {
        grid-template-columns: 1fr;
    }

    .forum-card {
        padding: 2rem;
    }
}
