/* =============================================
   SLIDER ADDITIONS — GLLENMAXX
   Dots, Progress Bar, Animations
   ============================================= */

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: scale(1.15);
}

.dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), #ffffff);
    width: 0%;
}

/* Slide-in animation (used by slide-content children) */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
