/* Maintenance content styles */
.maintenance-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    margin-top: 5rem;
}

.content-container {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.wrench-icon {
    color: #C5A572;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.text-content {
    margin-bottom: 2rem;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 5rem 0 1rem 0;
    color: #C5A572;
}

@media (min-width: 768px) {
    .text-content h1 {
        font-size: 3rem;
    }
}

.text-content p {
    font-size: 1.25rem;
    color: white;
}

@media (min-width: 768px) {
    .text-content p {
        font-size: 1.5rem;
    }
}