/**
 * CSS pour la page de maintenance
 */

.maintenance-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.maintenance-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.maintenance-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.maintenance-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-icon {
    margin: 0 auto 2rem;
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.maintenance-message {
    font-size: 1.25rem;
    color: #475569;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.maintenance-time {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 2rem;
}

.maintenance-info {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.maintenance-info p {
    margin: 0.5rem 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.maintenance-info p:first-child {
    margin-top: 0;
}

.maintenance-info p:last-child {
    margin-bottom: 0;
}

.maintenance-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-maintenance {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-maintenance:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-maintenance:active {
    transform: translateY(0);
}

.btn-maintenance-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #6366f1;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-maintenance-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 2rem 1.5rem;
    }
    
    .maintenance-title {
        font-size: 2rem;
    }
    
    .maintenance-message {
        font-size: 1.1rem;
    }
    
    .maintenance-icon {
        width: 80px;
        height: 80px;
    }
    
    .maintenance-icon svg {
        width: 80px;
        height: 80px;
    }
}
