/* assets/css/gallery.css */

.gallery-carousel-container {
    padding: 30px 0;
}

.gallery-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px; /* Adjust as needed */
}

.gallery-item {
    padding: 0 15px;
    box-sizing: border-box;
    outline: none;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.4s ease;
}

.gallery-item a:hover img {
    transform: scale(1.1);
}

/* Slick Carousel Arrows */
.gallery-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid #ddd;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 0; /* Hide default text */
    line-height: 0;
    transition: all 0.3s ease;
}
.gallery-carousel .slick-arrow:hover {
    background: #fff;
    border-color: #333;
}

.gallery-carousel .slick-prev {
    left: -50px;
}

.gallery-carousel .slick-next {
    right: -50px;
}

.gallery-carousel .slick-arrow i {
    color: #333;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 1300px) {
    .gallery-carousel .slick-prev {
        left: 10px;
    }
    .gallery-carousel .slick-next {
        right: 10px;
    }
}

/* Slick Carousel Dots */
.gallery-carousel .slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.gallery-carousel .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.gallery-carousel .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 10px;
    width: 10px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.gallery-carousel .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.gallery-carousel .slick-dots li.slick-active button:before {
    background: #5869DA;
    opacity: 1;
} 