/* =========================================
   RESET
========================================= */

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #ffffff;
}


/* =========================================
   MAIN SECTION
========================================= */

.coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    /*
        Replace this with your actual background image.
        Example:
        background-image: url("images/circuit7-bg.jpg");
    */
    background-image: url("images/circuit7-bg.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* =========================================
   BLUE OVERLAY
========================================= */

.coming-soon__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(21, 99, 151, 0.78) 0%,
            rgba(27, 104, 153, 0.75) 50%,
            rgba(18, 91, 140, 0.78) 100%
        );

    z-index: 1;
}


/* =========================================
   CONTENT
========================================= */

.coming-soon__content {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding: 55px 30px 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    text-align: center;
}


/* =========================================
   TOP CONTENT
========================================= */

.coming-soon__top {
    width: 100%;
    max-width: 1100px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 10px;
}


/* =========================================
   BRAND
========================================= */

.coming-soon__brand {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 8px;

    margin-bottom: clamp(65px, 8vh, 100px);
}


/* =========================================
   HEADING
========================================= */

.coming-soon h1 {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.1;

    font-weight: 800;
    letter-spacing: 1px;

    margin: 0;
}

.coming-soon h1 span {
    letter-spacing: 0;
}


/* =========================================
   DIVIDER
========================================= */

.coming-soon__line {
    width: 375px;
    max-width: 70%;

    height: 4px;

    background: #ffffff;

    margin: 22px auto 38px;
}


/* =========================================
   DESCRIPTION
========================================= */

.coming-soon__description {
    max-width: 920px;

    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.65;

    font-weight: 400;
}

.coming-soon__description p {
    margin: 0;
}

.coming-soon__description a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.coming-soon__description a:hover {
    text-decoration: underline;
}


/* =========================================
   CONTACT BUTTONS
========================================= */

.contact-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 48px;
}

.contact-button {
    min-width: 282px;
    height: 62px;

    padding: 6px 25px 6px 7px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-radius: 50px;

    background: #ffffff;
    color: #222222;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}


/* =========================================
   CONTACT ICON
========================================= */

.contact-button__icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #397eb3;
}

.contact-button__icon svg {
    width: 23px;
    height: 23px;

    fill: #ffffff;
}


/* =========================================
   SOCIAL
========================================= */

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 38px;
}

.social-links a {
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    background: #f2f2f2;
}

.social-links svg {
    width: 22px;
    height: 22px;

    fill: #397eb3;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;

    text-align: center;

    font-size: 14px;
    line-height: 1.7;

    font-weight: 400;

    margin-top: 35px;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #ffffff;

    text-decoration: none;

    font-weight: 700;
}

.site-footer a:hover {
    text-decoration: underline;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1440px) {

    .coming-soon__content {
        padding-top: 65px;
        padding-bottom: 50px;
    }

    .coming-soon__brand {
        margin-bottom: 85px;
    }

    .contact-buttons {
        margin-top: 45px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .coming-soon__content {
        padding: 45px 25px 35px;
    }

    .coming-soon__brand {
        letter-spacing: 6px;
        margin-bottom: 65px;
    }

    .coming-soon h1 {
        font-size: clamp(38px, 6vw, 60px);
    }

    .coming-soon__description {
        max-width: 750px;
    }

    .contact-button {
        min-width: 260px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .coming-soon {
        min-height: 100svh;

        /*
            Adjust background position depending
            on your actual player image.
        */
        background-position: 65% center;
    }

    .coming-soon__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(25, 105, 157, 0.84),
                rgba(25, 105, 157, 0.88)
            );
    }

    .coming-soon__content {
        min-height: 100svh;

        padding:
            38px
            20px
            28px;
    }

    .coming-soon__top {
        margin-top: 0;
    }
    .coming-soon__brand img{
        max-width: 200px;
    }
    .coming-soon h1 {
        max-width: 100%;

        font-size: clamp(34px, 9vw, 40px);
        line-height: 1.15;
    }

    .coming-soon__line {
        width: 230px;
        height: 3px;

        margin:
            20px auto
            28px;
    }

    .coming-soon__description {
        max-width: 550px;

        font-size: 15px;
        line-height: 1.7;
    }

    .coming-soon__description p + p {
        margin-top: 3px;
    }

    /* Contact buttons stack */
    .contact-buttons {
        width: 100%;

        flex-direction: column;

        gap: 13px;

        margin-top: 30px;
    }

    .contact-button {
        width: min(100%, 330px);
        min-width: 0;

        height: 58px;

        padding-right: 20px;

        font-size: 14px;
    }

    .contact-button__icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .social-links {
        gap: 15px;

        margin-top: 25px;
    }

    .social-links a {
        width: 46px;
        height: 46px;
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }

    .site-footer {
        font-size: 11px;

        margin-top: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .coming-soon__content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .coming-soon__brand {
        font-size: 25px;
        letter-spacing: 5px;

        margin-bottom: 48px;
    }

    .coming-soon h1 {
        font-size: 32px;
    }

    .coming-soon__description {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-button {
        width: 100%;
        max-width: 310px;

        height: 55px;
    }

    .contact-button__icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .social-links {
        margin-top: 22px;
    }

    .site-footer {
        font-size: 10px;
        line-height: 1.6;
    }

}


/* =========================================
   VERY SHORT SCREENS
========================================= */

@media (max-height: 700px) and (min-width: 768px) {

    .coming-soon__content {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .coming-soon__line {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .contact-buttons {
        margin-top: 25px;
    }

    .social-links {
        margin-top: 20px;
    }

    .site-footer {
        margin-top: 20px;
    }

}