.section-title {
  letter-spacing: 0.2px;
}

.filter-pill {
    border-radius: 24px;
    padding: 0.4rem 1.8rem;
    border: none;
    color: #101010;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: roboto;
    background: #e7e7e7;
    font-family: 'Roboto';
}

.filter-pill.active {
  background: #b64d94;
  border-color: #b64d94;
  color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    gap: 14px;
    padding: 14px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #151922;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    aspect-ratio: 4 / 3;
}


.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.192);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, #b64d9473  0%, rgba(10, 12, 16, 0) 80%);
    padding: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #f3f4f6;
}

.gallery-item:hover .overlay , .badge-soft {
  opacity: 1;
}

.badge-soft{
    background: #b64d94;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Roboto';
}


.bg-purpledark{
    background-color: #120a23;
}

.gallery-content {
    position: relative;
    top: -88%;
}

.gal-text {
    font-size: 24px;
    margin-top: 8px;
    font-family: 'Roboto';
    line-height: 24px;
}

.img-btn-close ,.img-btn-close:hover{
   top: -30px;
   right: -30px;
   background: #ffffff;
   padding: 0px 4px;
}

.bi-x {
    color: #101010;
    font-size: 26px;
}


@media (max-width: 992px) {
.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 14px;
    padding: 14px;
}
}


@media (max-width: 600px) {
.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(80%, 1fr));
}
}

/* .animated-bg {
    background: linear-gradient(270deg, #db138b63, #0f964e48, #860b5d62, #2dbeee86);
    background-size: 800% 800%;
    animation: gradientBG 20s ease infinite;
    border-radius: 8px;
}

@keyframes gradientBG {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
} */

@media (max-width: 992px) {
.filter-pill {
    padding: 0.4rem 1rem;
}
}