/* Weather Section */
.weather-section {
    padding: 2rem 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-medium);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.weather-card {
    background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-2px);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.weather-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.weather-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-black);
}

.weather-desc {
    font-size: 1rem;
    color: var(--color-gray-dark);
    text-transform: capitalize;
}

.weather-details {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    color: var(--color-gray-dark);
}

.weather-detail-item {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .weather-grid {
        grid-template-columns: 1fr;
    }
}