@charset "utf-8";
/* CSS Document */

		.gallery {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Slider */

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 300px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
}

/* Buttons */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    color: white;

    font-size: 25px;
    cursor: pointer;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mobile */

@media (max-width: 768px) {

    .gallery-item {
        flex: 0 0 250px;
        height: 180px;
    }

    .section-title h2 {
        font-size: 26px;
    }

}
	
