/* =========================================
   LUDA — MAINTENANCE PAGE
   ========================================= */


/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ---------- BODY ---------- */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f5;
    color: #111111;
}


/* ---------- PAGE ---------- */

.maintenance-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ---------- HEADER ---------- */

.maintenance-header {
    width: 100%;
    padding: 32px 7%;
    display: flex;
    align-items: center;
    
}


/* ---------- LOGO ---------- */

.logo {
    text-decoration: none;
    color: #111111;
    font-family:serif;

    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.logo span {
    color: #f47b20;
}


/* ---------- MAIN ---------- */

.maintenance-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 20px;
}


/* ---------- ICON ---------- */

.maintenance-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    border: 1px solid #deded8;
    border-radius: 50%;

    background: #ffffff;

    font-size: 28px;

    animation: rotate 8s linear infinite;
}

.maintenance-icon span {
    display: block;
}


/* ---------- EYEBROW ---------- */

.eyebrow {
    margin-bottom: 18px;

    color:#f47b20;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* ---------- HEADING ---------- */

h1 {
    margin-bottom: 24px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -4px;
}

h1 span {
    color: #f47b20;
}


/* ---------- DESCRIPTION ---------- */

.description {
    max-width: 570px;

    margin-bottom: 30px;

    color: #686863;

    font-size: 16px;
    line-height: 1.7;
}


/* ---------- STATUS ---------- */

.status {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 30px;

    color: #555550;

    font-size: 13px;
}


/* ---------- STATUS DOT ---------- */

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #f47b20;

    animation: pulse 2s ease-in-out infinite;
}


/* ---------- BUTTON ---------- */

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 15px 24px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.contact-button span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.contact-button:hover {
    background: #f47b20;
    border-color: #f47b20;
}

.contact-button:hover span {
    transform: translateX(5px);
}


/* ---------- FOOTER ---------- */

.maintenance-footer {
    width: 100%;

    padding: 25px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #deded8;

    color: #888883;

    font-size: 12px;
}


/* ---------- ANIMATIONS ---------- */

@keyframes rotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes pulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .maintenance-header {
        padding: 25px 6%;
    }

    .maintenance-content {
        padding: 50px 25px;
    }

    h1 {
        font-size: 50px;
        letter-spacing: -2.5px;
    }

    .description {
        font-size: 15px;
    }

    .maintenance-footer {
        flex-direction: column;
        gap: 8px;

        text-align: center;

        padding: 22px 6%;
    }

}

/* ---------- COUNTDOWN ---------- */

.countdown {
    display: flex;
    justify-content: center;
    gap: 14px;

    margin: 5px 0 30px;
}

.countdown div {
    min-width: 75px;

    padding: 12px 10px;

    border: 1px solid #deded8;
    background: #ffffff;
}

.countdown strong {
    display: block;

    font-size: 22px;
    font-weight: 700;

    color: #111111;
}

.countdown span {
    display: block;

    margin-top: 4px;

    color: #888883;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-message {
    font-size: 18px;
    font-weight: 700;
    color: #b79b63;
}


/* ---------- MOBILE COUNTDOWN ---------- */

@media (max-width: 600px) {

    .countdown {
        gap: 6px;
    }

    .countdown div {
        min-width: 62px;
        padding: 10px 6px;
    }

    .countdown strong {
        font-size: 18px;
    }

    .countdown span {
        font-size: 8px;
    }

}
