/* ============================================
   RESPONSIVE STYLES - Mobile & Tablet
   ============================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-live {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .nav-bar {
        padding: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.875rem;
    }
    
    .temperature {
        font-size: 4.5rem;
    }
    
    .temperature.expanded {
        font-size: 3.5rem;
    }
    
    .weather-condition {
        font-size: 1.25rem;
    }
    
    .weather-icon {
        width: 100px;
        height: 100px;
    }
    
    .weather-icon.expanded {
        width: 80px;
        height: 80px;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .slide-in {
        animation: slideInUp 0.6s ease-out forwards;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-live {
        font-size: 0.8rem;
    }
    
    .temperature {
        font-size: 3.5rem;
    }
    
    .temperature.expanded {
        font-size: 2.5rem;
    }
    
    .weather-icon {
        width: 80px;
        height: 80px;
    }
    
    .weather-icon.expanded {
        width: 60px;
        height: 60px;
    }
}