.gallery-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.gallery-heading {
    text-align: center;
    color: #E91E63;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.gallery-item {
    background: #111;
    display: flex;
    flex-direction: column;
    border: 3px solid #E91E63;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
    border-color: #ff4081;
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #E91E63;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

.gallery-info {
    padding: 12px 10px;
    text-align: center;
    background: #0A0A0A;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-info h3 {
    margin: 0 0 4px 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: capitalize;
}

.gallery-info p {
    margin: 0;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 500;
}