@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

.img-gallery-container {
    padding: 25px;
}


.filter-options {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

.filter-btn {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    background-color: transparent;
    border-radius: 8px;
    padding: 15px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover {
    color: #c6b069;
    background-color: #000;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-item {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.gallery-item:hover img {
    background-color: rgba(0, 0, 0, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.pin-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ff0000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .pin-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }
}