/* ═══════════════════════════════════════════════
   MODULE: Weather — Styles
   ═══════════════════════════════════════════════ */

.weather-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at top, #0f1a30 0%, var(--bg-main) 70%);
    gap: 20px;
    user-select: none;
    padding: 20px;
}

/* ─── CURRENT WEATHER ─── */
.weather-current {
    display: flex;
    align-items: center;
    gap: 24px;
}

.weather-icon {
    font-size: 72px;
    filter: drop-shadow(0 0 15px rgba(255, 211, 42, 0.3));
    animation: weatherFloat 3s ease-in-out infinite;
}
@keyframes weatherFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-temp {
    font-size: 56px;
    font-weight: 700;
    color: var(--col-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.weather-temp-unit {
    font-size: 24px;
    color: var(--col-gray);
    font-weight: 400;
    vertical-align: super;
}

.weather-desc {
    font-size: 14px;
    color: var(--col-cyan);
    font-weight: 600;
    text-transform: capitalize;
}

.weather-city {
    font-size: 11px;
    color: var(--col-dark-gray);
    font-weight: 400;
}

.weather-details {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}
.weather-detail-item {
    display: flex; align-items: center; gap: 4px;
    font-size: 10px; color: var(--col-gray);
}
.weather-detail-icon { font-size: 12px; }

/* ─── FORECAST ─── */
.weather-forecast {
    display: flex;
    gap: 12px;
}

.weather-forecast-day {
    background: var(--bg-mail-item);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    transition: all 0.2s;
}
.weather-forecast-day:hover {
    background: var(--bg-hover);
    border-color: rgba(0, 210, 255, 0.15);
}

.weather-forecast-name {
    font-size: 10px;
    color: var(--col-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.weather-forecast-icon { font-size: 28px; }
.weather-forecast-temps {
    display: flex;
    gap: 8px;
    font-size: 11px;
}
.weather-forecast-high { color: var(--col-white); font-weight: 700; }
.weather-forecast-low { color: var(--col-dark-gray); font-weight: 400; }

/* ─── LAST UPDATE ─── */
.weather-update {
    font-size: 9px;
    color: var(--col-dark-gray);
    opacity: 0.6;
}
