header,footer {
    display: none;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    min-height: 100%;
}
body {
    background: url('/wp-content/uploads/2026/07/background.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.coming-soon {
    min-height: 100vh;
    min-height: 100svh; /* Better support for mobile browsers */

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;
}

.cs-top-img {
    position: absolute;
    top: 0;
    left: 0;
}
.cs-bot-img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.cs-content {
    display: flex;
    gap: 140px;
    align-items: center;
    position: relative;
}
.cs-content--body {
    max-width: 660px;
    width: 100%;
}
.cs-content--body h1 {
    font-family: "museo-sans";
    font-size: 100px;
    font-style: normal;
    font-weight: 600;
    line-height: 120px; /* 100% */

    background: var(--gradients-orange-pink-purple-70, linear-gradient(90deg, var(--tints-70-orange-70, #FFB573) 0%, var(--tints-70-pink-70, #FF4DB3) 50%, var(--tints-70-purple-70, #B776F1) 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 25px 0 30px;
}
.cs-content--body p {
    color: var(--Neutral-Dark-Grey, #494949);
    font-family: "museo-sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.cs-content--body p > span {
    color: #973BEB;
    font-weight: 700;
}
@media only screen and (max-width: 1600px) {
    .cs-content {
        gap: 40px;
    }
    .cs-content--body h1 {
        font-size: 80px;
        line-height: 95px;
        margin: 10px 0 15px;
    }

}
@media only screen and (max-width: 1500px) {
    .cs-top-img,
    .cs-bot-img {
        opacity: 0.1;
    }
}
@media only screen and (max-width: 1280px) {
    body {
        overflow-x: hidden;
    }
    .post, .page {
        padding-top: 0;
    }
    .b2-mh-wrap {
        display: none !important;
    }
    .cs-content--body img {
        margin: 0 auto;
    }
    .cs-content--body h1 {
        font-size: 70px;
        font-weight: 600;
        line-height: 90px;
        margin: 10px 0 20px;
    }
    .cs-content {
        justify-content: center;
        flex-direction: column;
    }
    .cs-content--body {
        text-align: center;
    }
    .cs-content--image img {
        width: 60%;
        display: block;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }
    .cs-content--body {
        max-width: 100%;
        width: 100%;
    }
    .cs-content--body h1 {
        font-size: 50px;
        line-height: 70px;
    }
    .cs-content--body p {
        font-size: 18px;
        line-height: 22px;
    }
}
@media only screen and (max-width: 375px) {
    .cs-content--body h1 {
        font-size: 40px;
        line-height: 60px;
    }
}

