/**
 * White Phoenix Slider Styles
 * Author: MAKcubes
 */

.white-phoenix-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.white-phoenix-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.slide-video iframe,
.slide-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    margin: 0 auto;
    width: 100%;
}

.slide-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: slideFadeInUp 0.6s ease;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideFadeInUp 0.6s ease 0.1s both;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideFadeInUp 0.6s ease 0.2s both;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: slideFadeInUp 0.6s ease 0.3s both;
}

.slide-button-primary {
    background: var(--accent-color, #ff6b6b);
    color: #fff;
}

.slide-button-primary:hover {
    background: var(--primary-color, #000);
    transform: translateY(-2px);
    color: #fff;
}

.slide-button-secondary {
    background: #333;
    color: #fff;
}

.slide-button-secondary:hover {
    background: var(--accent-color, #ff6b6b);
    transform: translateY(-2px);
}

.slide-button-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.slide-button-outline:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* Slick Slider Customization */
.white-phoenix-slider .slick-prev,
.white-phoenix-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.white-phoenix-slider .slick-prev {
    left: 20px;
}

.white-phoenix-slider .slick-next {
    right: 20px;
}

.white-phoenix-slider .slick-prev:hover,
.white-phoenix-slider .slick-next:hover {
    background: var(--accent-color, #ff6b6b);
}

.white-phoenix-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.white-phoenix-slider .slick-dots li {
    margin: 0;
}

.white-phoenix-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.white-phoenix-slider .slick-dots li.slick-active button {
    background: var(--accent-color, #ff6b6b);
    transform: scale(1.2);
}

/* Center Mode */
.white-phoenix-slider.center-mode .slick-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.white-phoenix-slider.center-mode .slick-center {
    opacity: 1;
}

/* Animations */
@keyframes slideFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slide-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .white-phoenix-slider .slick-prev,
    .white-phoenix-slider .slick-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .white-phoenix-slider .slick-prev {
        left: 10px;
    }
    
    .white-phoenix-slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 24px;
    }
    
    .slide-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}