/* --- MAINTENANCE PAGE STYLES --- */

.maintenance-hero {
    height: calc(100vh - 180px); /* Fill screen minus header/footer */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for better focus */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.maintenance-content {
    padding: 60px 0;
    color: #fff;
}

/* Industrial Warning Icon */
.warning-icon {
    width: 80px;
    height: 80px;
    background: var(--sem-yellow);
    color: #000;
    font-size: 50px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 20px rgba(255, 205, 0, 0.4);
}

.maintenance-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.maintenance-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Hazard Stripe Bar */
.construction-bar {
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient( 45deg, #ffcd00, #ffcd00 20px, #000 20px, #000 40px );
    border-radius: 4px;
}

/* Buttons */
.maintenance-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-yellow-back {
    background-color: var(--sem-yellow);
    color: #000;
    padding: 15px 35px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
}

.btn-yellow-back:hover {
    background-color: #fff;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .maintenance-content h1 {
        font-size: 32px;
    }

    .maintenance-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-yellow-back, .btn-outline-white {
        width: 100%;
        max-width: 280px;
    }
}
/* --- LANGUAGE DROPDOWN --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1100;
    border-top: 2px solid var(--sem-yellow);
}

    .lang-menu a {
        color: white;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        font-size: 13px;
        transition: 0.2s;
    }

        .lang-menu a:hover {
            background-color: var(--sem-yellow);
            color: #000;
        }

.lang-dropdown:hover .lang-menu {
    display: block;
}

