/* Hava Durumu Widget CSS */
.weather-widget {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.weather-widget .card-header {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    border-bottom: none;
    padding: 15px;
}

.weather-widget .card-body {
    padding: 20px;
}

.weather-widget .date-time {
    font-size: 14px;
    color: #6c757d;
}

.weather-widget .date-time .date {
    margin-right: 10px;
}

.weather-widget .temperature {
    font-size: 3rem;
    font-weight: 700;
    color: #1e88e5;
    margin: 10px 0;
}

.weather-widget .weather-desc {
    font-size: 18px;
    color: #495057;
    text-transform: capitalize;
}

.weather-widget .weather-details {
    margin-top: 20px;
}

.weather-widget .detail-icon {
    font-size: 20px;
    color: #1e88e5;
    margin-bottom: 5px;
}

.weather-widget .detail-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 2px;
}

.weather-widget .detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
}

.weather-widget .detail-sublabel {
    font-size: 11px;
    color: #6c757d;
}

.weather-widget hr {
    margin: 20px 0;
    border-color: #e9ecef;
}

.weather-widget .forecast {
    margin-top: 15px;
}

.weather-widget .forecast h6 {
    color: #495057;
    font-weight: 600;
}

.weather-widget .forecast-day {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.weather-widget .forecast-temp {
    font-size: 14px;
    font-weight: 600;
    color: #1e88e5;
}

/* Detaylı hava durumu sayfası için ek stiller */
.weather-detail-page .city-header {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.weather-detail-page .city-header h1 {
    margin-bottom: 10px;
    font-weight: 700;
}

.weather-detail-page .current-weather-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.weather-detail-page .forecast-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.weather-detail-page .forecast-day-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.weather-detail-page .forecast-day-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.weather-detail-page .weather-icon-lg {
    width: 100px;
    height: 100px;
}

.weather-detail-page .weather-icon-md {
    width: 60px;
    height: 60px;
}

.weather-detail-page .temp-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e88e5;
}

.weather-detail-page .weather-desc-large {
    font-size: 1.5rem;
    color: #495057;
    text-transform: capitalize;
}

.weather-detail-page .detail-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.weather-detail-page .detail-box .detail-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.weather-detail-page .detail-box .detail-value {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
}

/* Mobil cihazlar için duyarlı tasarım */
@media (max-width: 767.98px) {
    .weather-widget .temperature {
        font-size: 2.5rem;
    }
    
    .weather-widget .weather-desc {
        font-size: 16px;
    }
    
    .weather-widget .detail-icon {
        font-size: 18px;
    }
    
    .weather-widget .detail-value {
        font-size: 14px;
    }
    
    .weather-detail-page .temp-large {
        font-size: 2.5rem;
    }
}

/* Ana Şehir (Denizli) Kartı Stilleri */
.main-city-weather .weather-icon-xl {
    width: 120px;
    height: 120px;
}

.main-city-weather .temp-extra-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e88e5;
    margin: 10px 0;
}

.main-city-weather .weather-desc-large {
    font-size: 1.3rem;
    color: #495057;
    text-transform: capitalize;
}

.main-city-weather .detail-box-main {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #1e88e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-city-weather .detail-box-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-city-weather .detail-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.main-city-weather .detail-value-main {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Popüler Şehirler Kartları Stilleri */
.popular-city-card .weather-icon-sm {
    width: 50px;
    height: 50px;
}

.popular-city-card .temp-medium {
    font-size: 1.8rem;
    font-weight: 600;
    color: #17a2b8;
    margin: 5px 0;
}

.popular-city-card .detail-item-small {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 3px;
}

.popular-city-card .detail-item-small i {
    color: #17a2b8;
    margin-right: 3px;
}

.popular-city-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popular-city-card .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.popular-city-card .card-header {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-bottom: none;
    font-weight: 500;
}

/* Ana şehir kartı için özel animasyon */
.main-city-weather .card {
    transition: all 0.3s ease;
    border: 2px solid #1e88e5;
}

.main-city-weather .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.3);
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .main-city-weather .temp-extra-large {
        font-size: 2.8rem;
    }
    
    .main-city-weather .weather-icon-xl {
        width: 90px;
        height: 90px;
    }
    
    .main-city-weather .detail-value-main {
        font-size: 1rem;
    }
    
    .popular-city-card .temp-medium {
        font-size: 1.5rem;
    }
}
    
    .weather-detail-page .weather-desc-large {
        font-size: 1.2rem;
    }
}
