/* ===================================
   KONGRELER PAGE - ADDITIONAL STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.filter-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.filter-card h3 {
    font-size: 1.375rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.year-btn, .month-btn {
    padding: 12px 28px;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.year-btn:hover, .month-btn:hover {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.year-btn.active, .month-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

/* Congress Section */
.congress-section {
    padding: 60px 0;
    background: var(--bg-white);
    min-height: 400px;
}

.congress-list {
    display: grid;
    gap: 28px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 24px;
    display: block;
}

.empty-state p {
    font-size: 1.25rem;
}

/* Congress Card */
.congress-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: grid;
    gap: 20px;
}

.congress-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.congress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.congress-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.congress-date {
    color: var(--text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.congress-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.congress-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.congress-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.congress-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.congress-detail i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.congress-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.congress-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* About Content (for hakkimizda.html) */
.about-content {
    padding: 60px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.vm-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.vm-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.mission-list i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Activities Section */
.activities-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

.activities-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.activity-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.activity-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.activity-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.activity-content {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.activity-icon-small {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon-small i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.activity-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.activity-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.member-department {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .filter-card {
        padding: 24px 20px;
    }
    
    .month-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
    }
    
    .activity-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .month-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .month-btn, .year-btn {
        padding: 10px 16px;
        font-size: 0.9375rem;
    }
}
