/* Premium Custom Weather Stylesheet */

.weather-page-section {
    background-color: #f8fafc;
}

.weather-main-header {
    margin-bottom: 15px;
}

.weather-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1f2d;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0;
    display: inline-block;
}

.weather-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #1964a2;
    border-radius: 2px;
}

/* Glassmorphism Weather Card */
.glass-weather {
    background: linear-gradient(135deg, rgba(25, 100, 162, 0.9), rgba(75, 138, 36, 0.9)) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(75, 138, 36, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.glass-weather:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(75, 138, 36, 0.35) !important;
}

.glass-weather.error-card {
    background: linear-gradient(135deg, rgba(13, 31, 45, 0.9), rgba(100, 116, 139, 0.9)) !important;
    box-shadow: 0 8px 32px rgba(13, 31, 45, 0.15) !important;
}

.weather-header .location {
    font-size: 22px;
    color: #ffffff;
}

.weather-header .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.temperature {
    font-size: 64px;
    position: relative;
    line-height: 1;
}

.temperature::after {
    content: '°C';
    position: absolute;
    font-size: 24px;
    top: 5px;
    right: -32px;
}

.description {
    font-size: 16px;
    color: #ffffff;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.detail-value {
    font-size: 14px;
    color: #ffffff;
}

.detail-label {
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* Responsive viewports */
@media (max-width: 576px) {
    .weather-page-title {
        font-size: 22px;
    }
}
