/*
Theme Name: Inked Maintenance
Theme URI: https://inkedbooking.com
Author: InkedBooking
Author URI: https://inkedbooking.com
Description: Minimalist maintenance theme for InkedBooking.
Version: 3.49
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
}

.maintenance-container {
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    filter: brightness(100%);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff0000;
    /* Neon Red */
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: #cccccc;
    font-weight: 300;
    max-width: 80%;
}

/* Loader Animation */
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #ff0000;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-top: 2rem;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #ffffff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
        max-width: 100%;
    }
}