/**
 * Horizontal Scrolling Section Styles
 */

/* When user is in horizontal section, prevent body scrolling */
body.in-horizontal-section {
    overflow: hidden;
}

#brand-forward-section {
    position: relative;
    overflow: hidden;
}

/* Style for horizontal slides */
.horizontal-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.horizontal-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.horizontal-slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation styles */
#slide-dots li {
    transition: all 0.3s ease;
}

#slide-dots li.uk-active {
    transform: scale(1.2);
}

/* Navigation arrows */
#prev-slide, #next-slide {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#prev-slide:hover, #next-slide:hover {
    opacity: 1;
}

/* Mobile optimization */
@media (max-width: 959px) {
    .horizontal-slide {
        padding: 2rem;
    }
}
