/* bisco-fauna-gallery.css */

.fauna-gallery-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.gallery-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.gallery-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 0.9rem;
}

.fauna-item {
    text-decoration: none;
    color: #333;
    display: block;
    margin-bottom: 40px;
}

.fauna-img-wrapper {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    /* overflow visible agar swirl di sudut PNG tidak terpotong */
    overflow: visible;
}

.fauna-img-wrapper img {
    width: 100%;
    height: 100%;
    /* contain: tampilkan seluruh PNG termasuk dekorasi swirl di tepi */
    object-fit: contain;
    display: block;
}

.fauna-item:hover .fauna-img-wrapper {
    transform: scale(1.05);
}

.fauna-label {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
