/* =========================================
   DAMAN MANAGEMENT LTD
   MAINTENANCE / COMING SOON PAGE
   ========================================= */

:root {
    --navy: #071a2b;
    --navy-light: #0d2a43;

    --gold: #c8a45d;
    --gold-light: #e0c17c;

    --white: #ffffff;
    --muted: #aab6c0;

    --border: rgba(255, 255, 255, 0.14);

    --heading: "Playfair Display", serif;
    --body: "DM Sans", sans-serif;
}


/* =========================================
   RESET
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--body);
    background: var(--navy);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   MAIN
   ========================================= */

.maintenance {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--navy);
}


/* =========================================
   BACKGROUND
   ========================================= */

.background {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;

    transform: scale(1.04);

    filter: saturate(0.55);
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 25, 0.97) 0%,
            rgba(4, 15, 25, 0.91) 45%,
            rgba(4, 15, 25, 0.78) 100%
        );
}


/* Decorative gold line */

.maintenance::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(200, 164, 93, 0.45),
            transparent
        );
}

.maintenance::after {
    content: "";

    position: absolute;

    top: 0;
    right: 8%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(200, 164, 93, 0.2),
            transparent
        );
}


/* =========================================
   CONTENT
   ========================================= */

.content {
    position: relative;
    z-index: 2;

    width: min(90%, 1100px);

    padding: 70px 0 35px;
}


/* =========================================
   LOGO
   ========================================= */

.logo {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 65px;
}

.logo-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-family: var(--heading);
    font-size: 27px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    color: var(--white);

    font-size: 18px;
    letter-spacing: 3px;
}

.logo-text small {
    margin-top: 6px;

    color: var(--gold);

    font-size: 8px;
    letter-spacing: 3px;
}


/* =========================================
   STATUS
   ========================================= */

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 14px;

    margin-bottom: 25px;

    border: 1px solid rgba(200, 164, 93, 0.3);

    background: rgba(200, 164, 93, 0.08);

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.12);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(200, 164, 93, 0.4);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(200, 164, 93, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 164, 93, 0);
    }

}


/* =========================================
   HERO
   ========================================= */

.hero {
    max-width: 780px;
}

.eyebrow {
    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}

.hero h1 {
    margin-bottom: 25px;

    font-family: var(--heading);

    font-size: clamp(48px, 6.5vw, 78px);

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);
}

.hero p {
    max-width: 650px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   DIVIDER
   ========================================= */

.divider {
    width: 100%;
    height: 1px;

    margin: 55px 0 30px;

    background: var(--border);
}


/* =========================================
   INFORMATION
   ========================================= */

.info {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr;

    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.info-item span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.info-item strong {
    color: #e7ebee;

    font-size: 13px;
    font-weight: 500;
}


/* =========================================
   BUSINESS
   ========================================= */

.business {
    margin-top: 42px;

    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.business-label {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.business-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.business-tags span {
    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #b8c2c9;

    font-size: 10px;

    letter-spacing: 0.4px;
}


/* =========================================
   CONTACT
   ========================================= */

.contact {
    margin-top: 45px;
}

.contact p {
    margin-bottom: 6px;

    color: #7f8d98;

    font-size: 12px;
}

.email {
    display: inline-block;

    color: var(--gold-light);

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid rgba(224, 193, 124, 0.35);

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.email:hover {
    color: white;

    border-color: white;
}

.address {
    margin-top: 8px;

    color: #7f8d98;

    font-size: 11px;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;
    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #61707c;

    font-size: 9px;

    letter-spacing: 0.5px;
}

.sic {
    color: #53616d;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 700px) {

    .content {
        padding: 45px 0 30px;
    }

    .logo {
        margin-bottom: 45px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 14px;
    }

    .info {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .business {
        margin-top: 35px;
    }

    .contact {
        margin-top: 35px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .maintenance::before {
        left: 3%;
    }

    .maintenance::after {
        right: 3%;
    }
}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 39px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .business-tags span {
        font-size: 9px;
    }
}