/* =========================================================
   PAYABOOL - COMING SOON
   Lightweight XHTML/CSS implementation
   ========================================================= */


/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

html,
body,
div,
span,
h1,
h2,
h3,
p,
a,
img,
form,
label,
input,
button,
section,
main {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}



*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

html {
    height: 100%;
    font-size: 16px;
}

body {
    min-height: 100%;
    background: #f7f8f4;
    color: #111111;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ---------------------------------------------------------
   MAIN PAGE
   --------------------------------------------------------- */

.coming-soon {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;

    /*
     * Separate background image.
     * Replace this file with your optimized pattern.
     */
    background-color: #f7f8f4;
    background-image: url("../images/background-pattern.webp");
    background-repeat: repeat;
    background-size: 170px auto;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
   --------------------------------------------------------- */

.coming-soon__container {
    position: relative;

    width: 100%;
    max-width: 1180px;

    min-height: 100vh;
    min-height: 100svh;

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 40px 50px;
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.coming-soon__content {
    position: relative;
    z-index: 3;

    width: 48%;

    padding-bottom: 20px;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.coming-soon__content h1 {
    color: #045f5b;

    font-size: clamp(58px, 6.5vw, 92px);
    font-weight: 800;

    line-height: 0.88;
    letter-spacing: -3px;

    margin-bottom: 24px;
}


/* ---------------------------------------------------------
   COUNTDOWN
   --------------------------------------------------------- */

.countdown {
    color: #006c69;

    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;

    line-height: 1.15;

    margin-bottom: 22px;
}

.countdown span {
    font-weight: 500;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.intro {
    max-width: 450px;

    color: #161616;

    font-size: 17px;
    line-height: 1.45;

    margin-bottom: 20px;
}


/* ---------------------------------------------------------
   NOTIFICATION FORM
   --------------------------------------------------------- */

.notify-form {
    display: flex;
    align-items: center;

    width: 100%;
    max-width: 420px;

    gap: 15px;
}


/* Input wrapper */

.input-wrapper {
    position: relative;

    flex: 1;

    height: 42px;

    background: #ffffff;

    border: 1px solid #e4e7e1;
    border-radius: 5px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03);
}


/* Email icon */

.email-icon {
    position: absolute;

    left: 10px;
    top: 50%;

    transform: translateY(-50%);

    color: #9ba4a2;

    font-size: 14px;

    pointer-events: none;
}


/* Email input */

.notify-form input {
    width: 100%;
    height: 100%;

    padding: 0 12px 0 30px;

    background: transparent;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    outline: none;
}

.notify-form input::placeholder {
    color: #9ca3a0;
}


/* Button */

.notify-form button {
    flex: 0 0 auto;

    height: 42px;

    padding: 0 23px;

    border-radius: 4px;

    background: #96cf24;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.notify-form button:hover {
    background: #83b91d;
}

.notify-form button:active {
    transform: translateY(1px);
}

.notify-form button:focus-visible,
.notify-form input:focus-visible {
    outline: 2px solid #006c69;
    outline-offset: 2px;
}


/* ---------------------------------------------------------
   RIGHT VISUAL
   --------------------------------------------------------- */

.coming-soon__visual {
    position: absolute;

    right: -20px;
    bottom: 0;

    width: 78%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    pointer-events: none;
}


/* ---------------------------------------------------------
   GREEN IMAGE GLOW
   --------------------------------------------------------- */

.image-glow {
    position: absolute;

    width: min(500px, 55vw);
    height: min(500px, 55vw);

    right: 9%;
    bottom: 17%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(174, 223, 79, 0.48) 0%,
            rgba(174, 223, 79, 0.25) 42%,
            rgba(174, 223, 79, 0) 72%
        );

    filter: blur(12px);
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.coming-soon__visual img {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: min(92vh, 850px);

    max-width: 100%;

    object-fit: contain;

    object-position: center bottom;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media screen and (min-width: 1400px) {

    .coming-soon__container {
        max-width: 1320px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .coming-soon__content h1 {
        font-size: 92px;
    }
	
	    .coming-soon__content h2 {
        font-size: 40px;
    }

    .coming-soon__visual {
        right: 0;
    }
}


/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP
   --------------------------------------------------------- */

@media screen and (max-width: 900px) {

    .coming-soon__container {
        padding: 40px;
    }

    .coming-soon__content {
        width: 50%;
    }

    .coming-soon__content h1 {
        font-size: clamp(52px, 8vw, 72px);
    }
	
	.coming-soon__content h1 {
        font-size: clamp(32px, 8vw, 52px);
    }

    .countdown {
        font-size: 27px;
    }

    .intro {
        font-size: 16px;
        max-width: 350px;
    }

    .coming-soon__visual {
        right: -70px;
        width: 62%;
    }

    .coming-soon__visual img {
        height: min(82vh, 720px);
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media screen and (max-width: 680px) {

    .coming-soon {
        min-height: 100svh;

        background-size: 125px auto;
    }

    .coming-soon__container {
        min-height: 100svh;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;

        padding: 45px 24px 0;
    }

    .coming-soon__content {
        width: 100%;

        padding-top: 10px;
        padding-bottom: 0;

        text-align: center;
    }

    .coming-soon__content h1 {
        font-size: clamp(52px, 17vw, 76px);

        letter-spacing: -2px;

        margin-bottom: 20px;
    }
	
	    .coming-soon__content h2 {
        font-size: 40px;
    }

    .countdown {
        font-size: 25px;

        margin-bottom: 17px;
    }

    .intro {
        max-width: 360px;

        margin-left: auto;
        margin-right: auto;

        font-size: 15px;
        line-height: 1.45;
    }

    .notify-form {
        max-width: 400px;

        margin: 0 auto;

        justify-content: center;
    }

    .coming-soon__visual {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
        height: auto;

        flex: 1;

        min-height: 330px;

        align-items: flex-end;

        margin-top: 15px;
    }

    .coming-soon__visual img {
        width: auto;
        max-width: 100%;

        height: min(57vh, 500px);
    }

    .image-glow {
        width: 350px;
        height: 350px;

        right: 50%;
        bottom: 8%;

        transform: translateX(50%);
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media screen and (max-width: 430px) {

    .coming-soon__container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .coming-soon__content h1 {
        font-size: 56px;
    }
	
	    .coming-soon__content h2 {
        font-size: 40px;
    }

    .countdown {
        font-size: 22px;
    }

    .intro {
        font-size: 14px;
    }

    .notify-form {
        gap: 8px;
    }

    .notify-form button {
        padding-left: 16px;
        padding-right: 16px;
    }

    .coming-soon__visual {
        min-height: 290px;
    }

    .coming-soon__visual img {
        height: min(53vh, 430px);
    }
}


/* ---------------------------------------------------------
   VERY SMALL SCREENS
   --------------------------------------------------------- */

@media screen and (max-width: 350px) {

    .coming-soon__content h1 {
        font-size: 50px;
    }
	
	 .coming-soon__content h2 {
        font-size: 40px;
    }

    .countdown {
        font-size: 20px;
    }

    .notify-form {
        flex-direction: column;

        align-items: stretch;
    }

    .input-wrapper,
    .notify-form button {
        width: 100%;
    }

    .coming-soon__visual {
        min-height: 240px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .notify-form button {
        transition: none;
    }
}