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

:root {
    --primary-red: #8B1538;
    --dark-red: #6B1028;
    --light-red: #A64D79;
    --accent-gold: #b89946;
    --warm-white: #FDF8F5;
    --soft-gray: #F5F3F0;
    --text-dark: #2C1810;
    --text-light: #6B5B73;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    min-height: 100vh;
}

a {
    color: var(--text-light);
    text-decoration: none;
} */

/* .navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--primary-red);
    background: rgba(139, 21, 56, 0.05);
}

.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 6rem 2rem 3rem 2rem;
    text-align: center;
    margin-top: 20px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
} */

.forum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.forum-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Category Navigation */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* margin-bottom: 2rem; */
    padding: 1rem;
    background: var(--soft-gray);
    border-radius: 15px;
}

.category-button {
    background: white;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.category-button.active,
.category-button:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-container {
    margin-bottom: 3rem;
}

.faq-item {
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.1);
}

.faq-question {
    background: var(--soft-gray);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-red);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 21, 56, 0.05);
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Comment Section */
.comments-section {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 21, 56, 0.1);
}

.comments-title {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.comment {
    background: var(--soft-gray);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-red);
}

.comment-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Comment Form */
.comment-form {
    background: rgba(139, 21, 56, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(139, 21, 56, 0.1);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* .form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(139, 21, 56, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
} */

/* .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
} */

/* Topic Categories */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.topic-card {
    background: linear-gradient(135deg, var(--soft-gray) 0%, white 100%);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.15);
    color: inherit;
}

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.topic-title {
    font-size: 1.3rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.topic-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.topic-stats {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Search Section */
.search-section {
    margin-bottom: 2rem;
}

.search-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0 3rem 0 1rem;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 50px;
    line-height: 50px;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.2);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .category-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-button {
        text-align: center;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .forum-container {
        padding: 2rem 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}

.hide {
    display: none;
}