/* Web Maintenance Page Specific Styles */

/* Hero Section - Matching purple/blue gradient */
#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#hero h2 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#hero p {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #hero {
        padding: 4rem 0;
    }
    
    #hero h2 {
        font-size: 2.2rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
}
