/* =============================================================================
   TPH TRAINING HUB - INDEX PAGE
   Minimal styles for loading screen - everything else is inline
   ============================================================================= */

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    .loading-subtext {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
        margin: 1.5rem auto;
    }
    
    .loading-text {
        font-size: 0.9375rem;
    }
    
    .loading-subtext {
        font-size: 0.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .logo,
    .spinner {
        animation: none;
    }
}

/* Error state */
.error-state {
    color: #fca5a5;
}

.error-state .spinner {
    border-top-color: #fca5a5;
}

/* Success state */
.success-state {
    color: #86efac;
}

.success-state .spinner {
    border-top-color: #86efac;
}

/* Maintenance state */
.maintenance-state {
    color: #fcd34d;
}

.maintenance-state .spinner {
    border-top-color: #fcd34d;
}