/* ================================================
   FIORRA WEATHER PAGE STYLES
   Son Düzenleme 17:12:24 19:30:00
   ================================================ */

/* Container */
.weather-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
    min-height: 100vh;
}

/* Header */
.weather-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-spacer {
    width: 40px;
}

/* Main Content */
.weather-main {
    padding: 1rem;
}

/* Weather Data Container */
.weather-data {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* City Header */
.city-header {
    text-align: center;
    margin-bottom: 24px;
}

.city-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.current-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Today's Weather Card */
.today-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3) 0%, rgba(255, 107, 157, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.today-icon {
    font-size: 4rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.today-temp {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.today-condition {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.today-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.detail-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 7 Day Forecast Section */
.forecast-section {
    margin-top: 24px;
}

.forecast-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forecast-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forecast-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.forecast-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.forecast-day {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.forecast-day-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.forecast-day-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.forecast-icon {
    font-size: 1.8rem;
}

.forecast-condition {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 10px;
}

.forecast-temps {
    display: flex;
    gap: 8px;
    align-items: center;
}

.temp-high {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
}

.temp-low {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Disclaimer */
.weather-disclaimer {
    margin-top: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
}

.weather-disclaimer p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
    .today-card {
        padding: 20px 16px;
    }
    
    .today-icon {
        font-size: 3rem;
    }
    
    .today-temp {
        font-size: 2.5rem;
    }
    
    .today-details {
        gap: 16px;
    }
    
    .forecast-condition {
        display: none;
    }
    
    .forecast-day {
        min-width: 70px;
    }
}
