/* gallery.css */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f0 100%);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 2rem auto;
    max-width: 1000px;
}

.carousel-container {
    flex: 1;
    text-align: center;
}

.carousel-btn {
    background-color: rgba(214, 51, 132, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: rgba(214, 51, 132, 1);
    transform: scale(1.1);
}

.active-image {
    max-width: 100%;
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .carousel-wrapper {
        gap: 10px;
    }
    .active-image {
        max-height: 300px;
    }
}