/* Add any custom styles here */
.card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
}

.gallery-pics {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    padding: 16px;
}

.pic {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    overflow: hidden;
}

.pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pic:hover img {
    transform: scale(1.05);
}

.opacity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.pic:hover .opacity-overlay {
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .gallery-pics {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-pics {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

