/* maintenance-mode-plugin/assets/css/front.css */
/* Front-End Styles for Maintenance Mode Page */

/* Ensure full-screen background for both html and body */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Full-screen background image container */
.mmp-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

/* Optional overlay for better text readability */
.mmp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Container for the maintenance message and logo */
.mmp-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    /*max-width: 600px;*/
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

/* Logo styling */
.mmp-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Maintenance message text */
.mmp-message {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Social media icons container */
.mmp-social {
    margin: 20px 0;
}

.mmp-social a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mmp-social a:hover {
    color: #ffcc00;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mmp-container {
        padding: 10px;
    }
    .mmp-message {
        font-size: 18px;
    }
}

/* maintenance-mode-plugin/assets/css/front.css */
/*body { margin: 0; padding: 0; }

