/* ==================================================
   KEGIATAN ASRAMA - FRONTEND
   ================================================== */
body {
    font-family: 'Poppins', sans-serif;
}

/* Judul halaman */
h3 {
    font-weight: 700;
    color: #800000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #800000;
    margin-top: 10px;
    border-radius: 3px;
}

/* Card kegiatan */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(128,0,0,0.25);
}

/* Gambar kegiatan */
.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

/* Body card */
.card-body {
    padding: 18px;
}

/* Judul kegiatan */
.card-title {
    font-weight: 700;
    color: #5b1a1a;
    margin-bottom: 8px;
}

/* Text kegiatan */
.card-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Empty state */
p {
    font-size: 1rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .card-img-top {
        height: 180px;
    }
}
