/**
 * Photo Gallery Styles
 * Custom styles for the Photo Gallery content element
 */

.photo-gallery-container {
    margin: 60px 0;
    padding: 0;
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.32px;
    margin-bottom: 20px;
}

.gallery-meta {
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px; */
}
.gallery-meta .text-end {
    @media screen and (max-width: 991px) {
        text-align: left!important;
        margin-top: 10px;
    }

}

/* Tags */
.gallery-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-tags .tag {
    display: inline-block;
    color: #D0DBE7;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.14px;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: #C7CDD6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.18px;
    padding-right: 10px;
}

.gallery-tags .tag:hover {
    background: rgba(115, 150, 247, 0.2);
    opacity: 1;
    color: #7396F7;
}

/* Year */
.gallery-year {
    color: #C7CDD6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.18px;
    opacity: 0.4;
}

.gallery-year .year-label {
    font-weight: 400;
    margin-right: 5px;
}

.gallery-year .year-value {
    font-weight: 600;
    color: #FFF;
}

/* Slick Slider Customization */
.photo-gallery-slider {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.gallery-slide {
    position: relative;
    outline: none;
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #FFF;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Slick Arrows */
.photo-gallery-slider .slick-prev,
.photo-gallery-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.photo-gallery-slider .slick-prev:hover,
.photo-gallery-slider .slick-next:hover {
    /* background: rgba(115, 150, 247, 0.5); */
}

.photo-gallery-slider .slick-prev {
    left: 25px;
}

.photo-gallery-slider .slick-next {
    right: 25px;
}

.photo-gallery-slider .slick-prev:before,
.photo-gallery-slider .slick-next:before {
    font-size: 30px;
    opacity: 1;
}

/* Slick Dots */
.photo-gallery-slider .slick-dots {
    bottom: 20px;
}

.photo-gallery-slider .slick-dots li button:before {
    font-size: 12px;
    color: #FFF;
    opacity: 0.5;
}

.photo-gallery-slider .slick-dots li.slick-active button:before {
    color: #7396F7;
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .gallery-title {
        font-size: 36px;
        letter-spacing: -0.36px;
    }
    
    .gallery-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .photo-gallery-slider .slick-prev,
    .photo-gallery-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .photo-gallery-slider .slick-prev {
        left: 10px;
    }
    
    .photo-gallery-slider .slick-next {
        right: 10px;
    }
    
    .image-caption {
        font-size: 14px;
        padding: 10px 15px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* Alert */
.alert {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.alert-info {
    background: rgba(115, 150, 247, 0.1);
    color: #7396F7;
    border: 1px solid rgba(115, 150, 247, 0.3);
}


/* Custom */

.photo-gallery-slider .slick-prev,
.photo-gallery-slider .slick-next {
    top: -20px;
    background-color: #202027;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.photo-gallery-slider .slick-prev {
    left: inherit;
    right: 60px;
}
.photo-gallery-slider .slick-prev:before,
.photo-gallery-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    
}
.photo-gallery-slider .slick-prev:before {
    content: "\f053";
}
.photo-gallery-slider .slick-next:before {
    content: "\f054";
}