/* NoraCMS slider — vanilla, no deps. */

.aura-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1f2e;
    margin: 1.5rem 0;
}
.aura-slider.aura-slider-empty {
    height: auto !important;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    font-style: italic;
    background: #f5f5f5;
}

/* Track holds all slides */
.aura-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide */
.aura-slider-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 2rem;
}

/* SLIDE transition (default): horizontal slide */
.aura-slider.transition-slide .aura-slider-slide {
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.6s ease;
}
.aura-slider.transition-slide .aura-slider-slide.is-active {
    transform: translateX(0);
}
.aura-slider.transition-slide .aura-slider-slide.is-prev {
    transform: translateX(-100%);
}

/* FADE transition */
.aura-slider.transition-fade .aura-slider-slide {
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: none;
}
.aura-slider.transition-fade .aura-slider-slide.is-active {
    opacity: 1;
}

/* Text alignment per slide */
.aura-slider-slide.align-center { justify-content: center; text-align: center; }
.aura-slider-slide.align-left   { justify-content: flex-start; text-align: left; }
.aura-slider-slide.align-right  { justify-content: flex-end; text-align: right; }

/* Slide content */
.aura-slider-content {
    max-width: 720px;
    padding: 1.5rem;
}
.aura-slider-content h2 {
    font-size: 2.6rem;
    color: #fff;
    margin: 0 0 0.6rem;
    line-height: 1.15;
    font-weight: 700;
}
.aura-slider-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.aura-slider-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--color-primary, #f59e0b);
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.aura-slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Arrows */
.aura-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aura-slider-arrow:hover { background: rgba(0,0,0,0.7); }
.aura-slider-arrow.prev { left: 1rem; }
.aura-slider-arrow.next { right: 1rem; }

/* Dots */
.aura-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
    z-index: 5;
}
.aura-slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.aura-slider-dot:hover { background: rgba(255,255,255,0.7); }
.aura-slider-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* Mobile */
@media (max-width: 640px) {
    .aura-slider-content h2 { font-size: 1.8rem; }
    .aura-slider-content p  { font-size: 1rem; }
    .aura-slider-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
    .aura-slider-arrow.prev { left: 0.5rem; }
    .aura-slider-arrow.next { right: 0.5rem; }
}
