/* Maintenance Section Styles */
.sbr-maintenance {
    background: url('/img/homepage-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
}


/* Maintenance Overlay */
.sbr-maintenance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}


/* Maintenance Content */
.sbr-maintenance-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.sbr-maintenance-icon {
    background: #6acc5b;
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(106, 204, 91, 0.3);
    animation: pulse 2s infinite;
}

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

.sbr-maintenance h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.sbr-maintenance p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Gabarito', sans-serif;
}


/* Button Styles */
.sbr-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Gabarito', sans-serif;
}

.sbr-btn-primary {
    background: #6acc5b;
    color: white;
    box-shadow: 0 4px 15px rgba(106, 204, 91, 0.3);
}

.sbr-btn-primary:hover {
    background: #52a842;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 204, 91, 0.4);
}


/* Maintenance Section Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .sbr-maintenance {
        min-height: 75vh;
        padding: 9rem 1.5rem 5rem;
    }
    
    .sbr-maintenance-content {
        max-width: 700px;
        padding: 0 1.5rem;
    }
    
    .sbr-maintenance-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sbr-maintenance h1 {
        font-size: 2.5rem;
    }
    
    .sbr-maintenance p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .sbr-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sbr-maintenance {
        min-height: 80vh;
        padding: 8rem 1rem 4rem;
    }
    
    .sbr-maintenance-content {
        padding: 0 1rem;
    }
    
    .sbr-maintenance-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .sbr-maintenance h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .sbr-maintenance p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .sbr-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}