/* Simple Slider Styles */
.simple-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.simple-slider-container {
    display: flex;
    height: 100%;
}

.simple-slide {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
}

.simple-slide-images {
    display: flex;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.simple-slide-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.simple-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simple-slide-content {
    flex: 1;
    padding: 2rem 4rem;
    text-align: right;
    direction: rtl;
}

.simple-slide-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.simple-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.simple-slide-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.simple-slide-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.simple-slide-button:hover {
    background-color: #000;
}

.simple-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.simple-slider-prev,
.simple-slider-next {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    pointer-events: auto;
}

/* Clear any existing content */
.simple-slider-prev:after,
.simple-slider-next:after,
.simple-slider-prev i,
.simple-slider-next i {
    display: none !important;
}

/* Create CSS arrow for previous button */
.simple-slider-prev:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(225deg);
    position: relative;
    right: -2px;
}

/* Create CSS arrow for next button */
.simple-slider-next:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
}

.simple-slider-prev:hover,
.simple-slider-next:hover {
    background-color: #fff;
}

.simple-slider-prev:hover:before,
.simple-slider-next:hover:before {
    border-color: #000;
}

/* Override Swiper default button styles */
.swiper-button-next, 
.swiper-button-prev {
    opacity: 0; /* Hide default arrows */
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    display: none !important;
}

.simple-slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

/* Swiper pagination customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .simple-hero-slider {
        height: 500px;
    }
    
    .simple-slide {
        flex-direction: column;
    }
    
    .simple-slide-images,
    .simple-slide-content {
        flex: none;
        width: 100%;
    }
    
    .simple-slide-content {
        padding: 2rem;
    }
    
    .simple-slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .simple-hero-slider {
        height: 400px;
    }
    
    .simple-slide-title {
        font-size: 1.5rem;
    }
    
    .simple-slide-description {
        font-size: 0.9rem;
    }
} 