@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
    font-family: 'Open Sans', sans-serif !important;
}

.komunitas-header-section {
    background-color: #f8f9fa;
    padding: 80px 0 50px;
    border-bottom: 1px solid #eee;
}

.komunitas-title {
    font-weight: 900;
    color: #1a3673;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.komunitas-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.card-komunitas {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card-komunitas:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 54, 115, 0.12);
    border-color: transparent;
}

.komunitas-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.komunitas-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.card-komunitas:hover .komunitas-img-box img {
    transform: scale(1.1);
}

.komunitas-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.komunitas-name {
    font-size: 17px;
    font-weight: 800;
    color: #1a3673;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-grow: 1;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #1a3673;
    margin: 15px auto;
    border-radius: 2px;
}
.btn-selengkapnya {
    background-color: #1a3673;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
}

.btn-selengkapnya:hover {
    background-color: #0d204a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 32, 74, 0.3);
}

@media (max-width: 768px) {
    .komunitas-title {
        font-size: 28px;
    }
    .komunitas-desc {
        font-size: 15px;
        text-align: left;
    }
}