/* maintenance/style.css – specific styles for maintenance page */

#main {
    padding-top: 96px; /* space for fixed header */
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.maintenance-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.maintenance-message {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.maintenance-icon {
    font-size: 4rem;
    color: #EFBF04; /* brand yellow */
    opacity: 0.8;
    animation: subtle-pulse 2s infinite ease-in-out;
}

@keyframes subtle-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}