/* Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: #FFD700; /* Sarı arka plan */
    background-image: url('/images/slider/wave-bg.jpg');
    background-position: 0% 50%;
    background-size: cover;
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.slider-image {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
}

.slider-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.slider-content {
    position: absolute;
    right: 0;
    width: 50%;
    padding: 0 50px;
}

.slider-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.slider-title {
    font-size: 3.4375rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-description {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 400;
}

.slider-source {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.slider-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4e73df;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-button:hover {
    background-color: #3a5fc9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #4e73df;
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #4e73df;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-slider {
        height: 500px;
    }
    
    .slider-bg {
        width: 100%;
        clip-path: none;
    }
    
    .slider-image {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px;
        justify-content: center;
        left: auto;
    }
    
    .slider-content {
        position: relative;
        width: 100%;
        right: auto;
        padding: 30px;
        text-align: center;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        margin: 0 auto 30px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: auto;
    }
    
    .swiper-slide {
        flex-direction: column;
        height: auto;
        padding: 50px 0;
    }
    
    .slider-image img {
        max-width: 80%;
    }
    
    .slider-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .slider-title {
        font-size: 2.25rem;
    }
} 