/* Place this CSS in app.css or image_gallery.css */
.image-gallery-section {
    color: #FFFFFF;
    font-family: 'SF Pro', sans-serif;
    background-color: #1C1C1E;
    padding: 20px 0;
    text-align: center;
}

.image-gallery-section .text-center h2 {
    font-size: calc(1.5rem + 1vw);
    color: #FFFFFF;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.image-gallery-section .text-center p {
    font-size: calc(1rem + 0.5vw);
    color: #FFFFFF;
    margin: 10px 0;
    margin-bottom: 1rem;
}

.image-gallery {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.scrolling-wrapper {
    display: flex;
    animation: scroll 60s linear infinite;
}

.scrolling-wrapper img {
    width: 200px;
    height: auto;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * (200px + 20px) * 20 / 2)); }
}

@media (max-width: 768px) {
    .scrolling-wrapper img {
        width: 150px;
    }
}
