/* Gallery/Carousel Styles */
hr.flare {
    display: block;
        border: 0;
        max-width: 100%;
        width: 160px;
        margin-top: 10px;
        margin-bottom: 20px;
        height: 2px;
        background: #fbb11c;
        background: -webkit-linear-gradient(left, #fbb11c 0%, #bb4075 100%);
        background: linear-gradient(to right, #fbb11c 0%, #bb4075 100%);
    }
.gallery-container {
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.image-carousel {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1rem;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
}

.carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.carousel-item img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.carousel-controls button {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
    z-index: 10;
}

.carousel-controls .carousel-prev {
    left: 1rem;
}

.carousel-controls .carousel-next {
    right: 1rem;
}

.carousel-controls button:hover {
    background: #f7fafc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#gallery-lightbox {
    z-index: 50;
    transition: opacity 0.3s ease;
}

#gallery-lightbox img {
    max-height: 90vh;
    max-width: 90vw;
}

#lightbox-close {
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

#lightbox-close:hover {
    transform: scale(1.1);
}