﻿/* Günler Slider Genel Alan */
.gunler-slider {
    max-width: 400px; /* Duyuru ile aynı genişlik */
    margin: 0 auto;
    background: #fff; /* Arka planı beyaz yaptık */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 650px;
}

/* Başlık */
.gunler-title-content {
    font-size: 1.6rem; /* Duyurudakiyle aynı */
    font-weight: bold;
    color: #2a7c70;
    text-align: center;
    margin-bottom: 15px;
}

/* Bölme Çizgisi */
.gunler-divider {
    width: 60px;
    height: 3px;
    background-color: #203b68;
    margin: 10px auto 20px;
    border-radius: 2px;
}

/* Carousel Ana Alan */
.gunler-carousel {
    position: relative;
    overflow: hidden;
}

/* Günler İçeriği */
.gunler-content {
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

/* Carousel İç */
.gunler-carousel-inner {
    position: relative;
    overflow: hidden;
    height: 60%; /* Sabit yükseklik, duyuruya benzetildi */
    width: 100%;
}

/* Günler Kartları */
.gunler-carousel-item {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 50%;
    opacity: 0;
    transform: scale(0.9) rotate(5deg);
    clip-path: circle(0%);
    transition: opacity 0.7s ease, clip-path 0.7s ease, transform 0.7s ease;
}

    .gunler-carousel-item.gunler-animate {
        display: flex;
        opacity: 1;
        clip-path: circle(150%);
        transform: scale(1) rotate(0deg);
    }

    .gunler-carousel-item.gunler-active {
        display: flex;
    }

/* Günler Görseli */
.gunler-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

    .gunler-image:hover {
        transform: scale(1.05);
    }

/* Slider Butonları */
.gunler-control-prev,
.gunler-control-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background: #203b68;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s ease-in-out;
}

    .gunler-control-prev:hover,
    .gunler-control-next:hover {
        background: #2a7c70;
        opacity: 1;
    }

.gunler-control-prev {
    left: -15px;
}

.gunler-control-next {
    right: -15px;
}

.gunler-control-prev-icon,
.gunler-control-next-icon {
    font-size: 1.5rem;
    color: #fff;
}

