/**
 * OGA Slider Styles
 * Companion styles for oga-slider.js
 */

/* ===== SLIDER CONTAINER ===== */
.oga-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.oga-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.oga-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

/* ===== SLIDE IMAGES ===== */
.oga-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.oga-slider:hover .oga-slide img {
    transform: scale(1.05);
}

/* ===== SLIDE OVERLAY ===== */
.oga-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 3rem;
    color: white;
}

.oga-slide-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--oga-primary, #FF8C00);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.oga-slide-description {
    font-size: 1.3rem;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* ===== NAVIGATION ARROWS ===== */
.oga-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.oga-slider-btn {
    pointer-events: all;
    background: rgba(255, 140, 0, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.oga-slider-btn:hover {
    background: var(--oga-primary, #FF8C00);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.oga-slider-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ===== DOTS NAVIGATION ===== */
.oga-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.oga-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.oga-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.oga-slider-dot.active {
    background: var(--oga-primary, #FF8C00);
    border-color: white;
    transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .oga-slide-title {
        font-size: 1.8rem;
    }

    .oga-slide-description {
        font-size: 1rem;
    }

    .oga-slider-btn {
        width: 40px;
        height: 40px;
    }

    .oga-slide-overlay {
        padding: 1.5rem;
    }
}
