/* =========================
   BACKGROUND PINK KONSISTEN
========================= */
.bg-soft-pink {
    background-color: #fff5f8;
}

.profil-section {
    background: transparent; /* ikut body */
}


/* =========================
   GRID GALERI RESPONSIVE
   Desktop: 3
   Tablet : 2
   Mobile : 1
========================= */
.galeri-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .galeri-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .galeri-grid-home {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CARD GALERI
========================= */
.galeri-card-home {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.25s ease;
}

.galeri-card-home:hover {
    transform: translateY(-6px);
}

/* =========================
   GAMBAR SERAGAM
========================= */
.galeri-img-home {
    width: 100%;
    height: 230px;        /* ⬅ KUNCI TINGGI */
    object-fit: cover;   /* ⬅ POTONG RAPI */
    display: block;
}

/* =========================
   LINK RESET
========================= */
.galeri-link {
    text-decoration: none;
}
