/* MEMORIES GALLERY SHOWCASE SECTION */
.memories-gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.memories-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1rem;
}

.memories-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-style: italic;
}

.memories-carousel {
    position: relative;
    margin: 40px 0;
}

.memories-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.memories-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.memories-slide {
    min-width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.memories-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.memories-slide:hover img {
    transform: scale(1.05);
}

.memories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    z-index: 10;
}

.memories-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.memories-prev {
    left: -60px;
}

.memories-next {
    right: -60px;
}

@media (max-width: 768px) {
    .memories-gallery-section {
        padding: 50px 0;
    }

    .memories-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .memories-slide {
        min-width: 280px;
        height: 200px;
    }

    .memories-prev,
    .memories-next {
        position: static;
        transform: none;
        margin: 0 10px;
    }

    .memories-carousel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .memories-track-wrapper {
        flex: 1;
    }
}
