/* Critical CSS for initial load - above the fold content */
.hero { 
    opacity: 0; 
    animation: fadeInHero 1s ease-out forwards; 
}

@keyframes fadeInHero {
    to { opacity: 1; }
}

/* Loading screen styles */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #005304 0%, #002A93 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 210, 152, 0.3);
    border-top: 3px solid #FFD298;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
