/**
 * Gönüllü Topluluklar Modülü Stilleri
 */

/* ─── Sayfa İskeleti ─────────────────────────────────── */
.gonullu-page {
    background: #f4f6fb;
    min-height: 100vh;
}

.gonullu-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 150px 30px 60px;
}

/* ─── Başlık ────────────────────────────────────────── */
.gonullu-title {
    text-align: center;
    color: #1a237e;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 50px;
}

.gonullu-title i {
    color: #23dee0;
}

/* ─── Yakında (veri yok) ─────────────────────────────── */
.gonullu-yakinda {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 4rem;
}

.gonullu-yakinda-card {
    text-align: center;
    max-width: 460px;
    width: 100%;
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, #1a237e 0%, #283593 60%, #3949ab 100%);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(26, 35, 126, 0.35), 0 8px 24px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.gonullu-yakinda-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gonullu-yakinda-icon i {
    font-size: 2.4rem;
    color: #23dee0;
}

.gonullu-yakinda-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.85rem;
    letter-spacing: 0.5px;
}

.gonullu-yakinda-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.gonullu-yakinda-tarih {
    font-size: 1rem;
    font-weight: 600;
    color: #23dee0 !important;
    margin-top: 0.6rem !important;
}

.gonullu-yakinda-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.75rem 0;
}

.gonullu-yakinda-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #fff;
    color: #1a237e !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.gonullu-yakinda-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: #1a237e !important;
}

/* ─── Topluluk Kartları Grid ────────────────────────── */
.gonullu-topluluklar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.gonullu-topluluk-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.gonullu-topluluk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.card-header {
    background: #1a237e;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 18px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #23dee0;
}

.community-logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.community-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h3.community-name {
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.card-body {
    padding: 24px;
}

.team-info h4 {
    color: #1a237e;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-info h4 i { color: #23dee0; }

.president,
.vice-presidents,
.volunteers {
    margin-bottom: 18px;
}

.member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #f4f6fb;
    border-radius: 8px;
    margin-bottom: 8px;
}

.member img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.member span {
    font-size: 0.9rem;
    color: #333;
}

.volunteer-names {
    display: block;
    padding: 14px;
    background: #f4f6fb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin-top: 8px;
}

.text-muted { color: #6c757d; }
.text-center { text-align: center; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1200px) {
    .gonullu-topluluklar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gonullu-main {
        padding: 130px 20px 40px;
    }

    .gonullu-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .gonullu-topluluklar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gonullu-yakinda-card {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .gonullu-main {
        padding: 120px 15px 30px;
    }

    .gonullu-title {
        font-size: 1.4rem;
    }

    .gonullu-yakinda-card {
        padding: 2rem 1.25rem;
    }

    .gonullu-yakinda-card h2 {
        font-size: 1.6rem;
    }
}
