/* =====================================================
   UrbanHuntz – Coming Soon Page
   Author: UrbanHuntz
   ===================================================== */

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

/* -------- BODY & BACKGROUND -------- */
body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: url("../img/comming-soon-shopping-cart.jpg") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* -------- PARTICLES -------- */
#particles-js {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* -------- MAIN BOX -------- */
.coming-box {
    position: relative;
    z-index: 1;
    background: rgba(15, 17, 22, 0.78);
    color: #ffffff;
    padding: 50px;
    max-width: 650px;
    width: 100%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

/* -------- BRAND -------- */
.logo {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight {
    color: #3b82f6;
}

/* -------- TEXT -------- */
h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}

.desc {
    font-size: 14px;
    color: #d1d1d1;
    margin-bottom: 30px;
}

/* -------- COUNTDOWN -------- */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.time-box {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px;
    background: rgba(0, 0, 0, 0.25);
}

.time-box h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.time-box span {
    font-size: 12px;
    color: #cfcfcf;
    letter-spacing: 1px;
}

/* -------- SUBSCRIBE -------- */
.subscribe {
    display: flex;
}

.subscribe input {
    border-radius: 6px 0 0 6px;
    border: none;
    padding: 12px;
    font-size: 14px;
}

.subscribe button {
    border-radius: 0 6px 6px 0;
    background: #3b82f6;
    border: none;
    color: #ffffff;
    padding: 12px 25px;
    font-weight: 500;
    cursor: pointer;
}

.subscribe button:hover {
    background: #2563eb;
}

/* =====================================================
   MOBILE VIEW (ONE-LINE COUNTDOWN)
   ===================================================== */

@media (max-width: 768px) {

    body {
        background-position: right center;
        background-size: cover;
    }

    .coming-box {
        padding: 25px 20px;
        max-width: 92%;
    }

    .logo {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    .desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* Keep countdown in ONE line */
    .countdown {
        flex-direction: row;
        gap: 6px;
    }

    .time-box {
        padding: 10px 6px;
    }

    .time-box h2 {
        font-size: 18px;
    }

    .time-box span {
        font-size: 10px;
    }

    /* Subscribe stacked */
    .subscribe {
        flex-direction: column;
    }

    .subscribe input {
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .subscribe button {
        border-radius: 6px;
        width: 100%;
    }
}

/* Extra small phones */
@media (max-width: 480px) {

    .time-box h2 {
        font-size: 16px;
    }

    /* Optional: hide seconds */
    .time-box:last-child {
        display: none;
    }
}
