/* Slider Cover Widget Styles */

.slider-cover-widget {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
}

/* Slides Container */
.slider-cover-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slider-cover-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay Effect */
.slider-cover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Active Slide */
.slider-cover-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Content */
.slider-cover-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Title */
.slider-cover-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Description */
.slider-cover-description {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button */
.slider-cover-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.slider-cover-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Navigation Arrows */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.slider-arrow:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: #007bff;
    transform: scale(1.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-cover-widget {
        min-height: 500px;
    }
    
    .slider-cover-title {
        font-size: 2.5rem;
    }
    
    .slider-cover-description {
        font-size: 1.1rem;
    }
    
    .slider-cover-button {
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .slider-cover-widget {
        min-height: 450px;
    }
    
    .slider-cover-content {
        max-width: 90%;
    }
    
    .slider-cover-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slider-cover-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .slider-cover-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-navigation {
        padding: 0 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slider-cover-widget {
        min-height: 400px;
    }
    
    .slider-cover-title {
        font-size: 1.5rem;
    }
    
    .slider-cover-description {
        font-size: 0.9rem;
    }
    
    .slider-cover-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}
