/* 🔹 Başlık Stili */
.weather-title {
    max-width: 1170px;
    margin: 30px auto 15px;
    font-size: 26px;
    font-weight: 700;
    color: #c00;
    text-align: left;
} 

.my-swiper {
    width: 1170px;
    max-width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background-image: url("/s/images/hava_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
}

.slide-content {
    text-align: center;
}

    .slide-content h2, .slide-content p {
        margin: 8px 0;
    }

.temperature {
    font-size: 26px;
    font-weight: bold;
    margin-top: 2px;
    color: #fff;
}

.weather-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    margin-top: 15px;
    color: #000;
}

    .weather-info span {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-weight: 500;
    }

    .weather-info img {
        width: 20px;
        height: 20px;
        opacity: 0.9;
    }

.swiper-slide::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.7);
}

.swiper-slide:last-child::after {
    display: none;
}

.swiper-pagination {
    bottom: 5px !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 15px;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(0,0,0,0.45);
        transform: scale(1.05);
    }

/* 🔹 Sadece alttaki harita görseli için responsive ayar */
.centered-image {
    display: block;
    margin: 40px auto;
    max-width: 100%; /* genişlik ekran boyutuna göre ayarlanacak */
    height: auto; /* yüksekliği otomatik */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.0);
}

/* 🔹 Harita açıklaması için */
.map-description {
    max-width: 1165px; /* harita ile aynı genişlik */
    margin: 20px auto; /* ortalanmış */
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

    .map-description ul {
        padding-left: 20px; /* liste noktaları için boşluk */
    }

    .map-description li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 15px;
    }

        .map-description li::marker {
            color: red; /* liste noktalarını kırmızı yapar */
        }

@media (max-width: 640px) {
    .my-swiper {
        height: 190px;
    }

    .swiper-slide {
        font-size: 16px;
    }

        .swiper-slide::after {
            display: none;
        }

    .weather-info {
        font-size: 12px;
        gap: 12px;
    }

        .weather-info img {
            width: 16px;
            height: 16px;
        }

    .temperature {
        font-size: 22px;
    }

    .weather-title {
        font-size: 22px;
        text-align: center;
    }

    .map-description {
        max-width: 90%;
        font-size: 12px;
    }
}
