/* 
 * Coming Soon Page Styles 
 * MAi Land & Developments
 */

/* ------------------------------------
 * RESET & BASE
 * ------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Maitree, Georgia, serif;
    color: #333;
    background-color: #f3f3f3;
}

/* ------------------------------------
 * MAIN CONTAINER
 * ------------------------------------ */
.mai-coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* ------------------------------------
 * LOGO
 * ------------------------------------ */
.mai-coming-soon__logo {
    margin-bottom: 50px;
}

.mai-coming-soon__logo img {
    max-width: 200px;
    height: auto;
}

/* ------------------------------------
 * CONTENT
 * ------------------------------------ */
.mai-coming-soon__content {
    max-width: 600px;
}

.mai-coming-soon__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
}

.mai-coming-soon__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f03f35;
}

.mai-coming-soon__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

/* ------------------------------------
 * CONTACT
 * ------------------------------------ */
.mai-coming-soon__contact {
    font-size: 1rem;
    color: #555;
}

.mai-coming-soon__contact a {
    color: #f03f35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mai-coming-soon__contact a:hover {
    color: #d63028;
}

/* ------------------------------------
 * RESPONSIVE
 * ------------------------------------ */
@media screen and (max-width: 576px) {
    .mai-coming-soon {
        padding: 30px 20px;
    }

    .mai-coming-soon__logo {
        margin-bottom: 40px;
    }

    .mai-coming-soon__logo img {
        max-width: 160px;
    }

    .mai-coming-soon__title {
        font-size: 1.75rem;
        padding-bottom: 15px;
    }

    .mai-coming-soon__title::after {
        width: 60px;
    }

    .mai-coming-soon__text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .mai-coming-soon__contact {
        font-size: 0.9375rem;
    }
}