/* CROEM Slider Styles */
.croem-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.croem-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.croem-slide {
    position: relative;
    width: 100%;
    display: none;
}

.croem-slide.active {
    display: block;
}

.croem-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.croem-slide-content {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.croem-slider-text-wrapper {
    padding: 20px 30px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.croem-slider-title {
    width: 660px;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.croem-slider-text-body {
    width: 600px;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Text Positions */
.croem-text-position-top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.croem-text-position-center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.croem-text-position-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Navigation Arrows */
.croem-slider-prev,
.croem-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.croem-slider-prev:hover,
.croem-slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.croem-slider-prev {
    left: 20px;
}

.croem-slider-next {
    right: 20px;
}

/* Dots Navigation */
.croem-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.croem-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.croem-slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.croem-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slide Animations */
.croem-slide {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .croem-slider-prev,
    .croem-slider-next {
        width: 40px;
        height: 40px;
    }
    
    .croem-slider-prev {
        left: 10px;
    }
    
    .croem-slider-next {
        right: 10px;
    }

    .croem-slider-title {
        width: 100%;
    }
}
