﻿/* Günler Slider Genel Alan */
.gunler-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: transparent !important;
}

/* Başlık */
.gunler-title-content {
    font-size: 1.3rem;
    font-weight: bold;
    color: #389c8e;
    text-align: center;
    margin-bottom: 5px;
}

/* Bölme Çizgisi */
.gunler-divider {
    width: 60px;
    height: 3px;
    background-color: #389c8e;
    margin: 5px 5px; 10px;
    border-radius: 2px;
}

/* Carousel Ana Alan */
.gunler-carousel {
    position: relative;
    overflow: hidden;
}

/* Günler İçeriği */
.gunler-content {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Carousel İç */
.gunler-carousel-inner {
    position: relative;
    overflow: hidden;
    height: 500px;
    width:300px;
}

/* Günler Kartları */
.gunler-carousel-item {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    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;
}

    /* Aktif Gün */
    .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: 120%;
    height: 400px;
    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: #389c8e;
    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;
    padding:5px;
}

    .gunler-control-prev:hover,
    .gunler-control-next:hover {
        background: #2a7c70;
        opacity: 1;
    }

/* Önceki ve Sonraki Butonlarının Konumu */
.gunler-control-prev {
    left: 4px;
}

.gunler-control-next {
    right: 4px;
}

/* Buton Simgeleri */
.gunler-control-prev-icon,
.gunler-control-next-icon {
    font-size: 1.5rem;
    color: #fff;
}

/* Buton - Tüm Günleri Göster */
.btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(45deg, #389c8e, #2a7c70);
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

    .btn:hover {
        background: linear-gradient(45deg, #2a7c70, #1e5d55);
        transform: scale(1.05);
    }
