/* =========================
   GALLERY SECTION
   ========================= */
.gallery {
    background: #fff0f8;
    padding: 90px 20px;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.gallery-wrapper h2 {
    font-size: 36px;
    color: var(--pink-dark);
    margin-bottom: 12px;
}

.gallery-wrapper p {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transform: scale(0.98);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover animation */
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wrapper h2 {
        font-size: 28px;
    }

    .gallery-wrapper p {
        font-size: 14px;
    }
}