/* Gallery Slideshow Styles */
.gallery-slide {
    transition: opacity 0.6s ease-in-out;
}

#fathersGallery .carousel-indicators button {
    background-color: rgba(255, 193, 7, 0.5);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#fathersGallery .carousel-indicators button.active {
    background-color: #ffc107;
    width: 14px;
    height: 14px;
}

#fathersGallery .carousel-control-prev-icon,
#fathersGallery .carousel-control-next-icon {
    background-color: rgba(255, 193, 7, 0.7);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

#fathersGallery .carousel-control-prev-icon:hover,
#fathersGallery .carousel-control-next-icon:hover {
    background-color: #ffc107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-slide img {
        height: 400px !important;
    }
}