/* Maintenance Banner Styles */
.maintenance-banner {
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.maintenance-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.maintenance-banner-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

/* Custom tool icon using CSS */
.maintenance-banner-icon::before {
    content: "🔧";
    display: inline-block;
}

.maintenance-banner-title {
  color: #FFF;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.maintenance-banner-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .maintenance-banner {
        padding: 30px 15px;
    }
    
    .maintenance-banner-title {
        font-size: 24px;
    }
    
    .maintenance-banner-icon {
        font-size: 40px;
    }
    
    .maintenance-banner-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .maintenance-banner {
        padding: 25px 10px;
    }
    
    .maintenance-banner-title {
        font-size: 20px;
    }
    
    .maintenance-banner-icon {
        font-size: 36px;
    }
}

/* Alternative color schemes - uncomment to use */
/* Dark theme */
/*
.maintenance-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}
*/

/* Orange theme */
/*
.maintenance-banner {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
}
*/

/* Green theme */
/*
.maintenance-banner {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}
*/