/* ================================
   COMING SOON PAGE — GLOBAL WRAPPER
   ================================ */

.coming-soon-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0px 0px;
    text-align: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ================================
   COMING SOON HERO — 3/4 SCREEN HEIGHT
   ================================ */

.coming-soon-hero {
    position: relative;
    height: 65vh;
    width: 100%;
    overflow: hidden;

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

    padding: 20px;
    box-sizing: border-box;

    /* Layer 1: base gradient (light → slightly darker) */
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(230,230,230,1) 100%
    );
}

.coming-soon-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 1.5s ease;
}


.coming-soon-hero .hero-fg {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /* 'background:' moved to page-coming-soon.php for dynamic css*/
    /* Darkening overlay that follows the sky */
    mix-blend-mode: multiply;
    opacity: 0.35; /* tweak as needed */
}

.coming-soon-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.coming-soon-hero h1 {
    font-size: clamp(1.4rem, 6vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.1;
    overflow-wrap: anywhere;
}


.coming-soon-hero .tagline {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}


/* ================================
   CTA SEND BUTTON
   ================================ */

.enter-site {
    display: inline-block;
    padding: 14px 32px;
    background: #c0392b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background 0.2s ease-in-out;
}

.enter-site:hover {
    background: #a83225;
}

.coming-soon-optin {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    text-align: center;
    width: 100%;
}

#coming-soon-send {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}


/* ================================
   LAUNCHING SOON SECTION
   ================================ */

.coming-soon-launch {
    padding: 10px 20px;
}

coming-soon-launch {
    margin-bottom: 10px;
    color: #111;
}

.coming-soon-launch p {
    font-size: 1.1rem;
    color: #555;
}

/* ================================
   CONTACT FORM (OPTIONAL)
   ================================ */

.coming-soon-contact {
    padding: 60px 20px 100px;
}

.coming-soon-contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coming-soon-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.coming-soon-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.coming-soon-form input,
.coming-soon-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.coming-soon-form button {
    background: #c0392b;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.coming-soon-form button:hover {
    background: #a83225;
}

/* ================================
   Template only
   ================================ */

.page-template-page-coming_soon body {
    margin: 0;
}

.page-template-page-coming_soon .site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-template-page-coming_soon .site-inner {
    flex: 1; /* content area grows, footer pushed down */
}

.page-template-page-coming_soon .genesis-skip-link {
    margin: 0;
}

.page-template-page-coming_soon .site-footer {
    margin-top: auto; /* footer sits at bottom when content is short */
}

.page-template-page-coming_soon .coming-soon-launch {
    font-size: 400%;
}

/* Phones: reduce hero height */
@media (max-width: 600px) {
    .coming-soon-hero {
        height: 50vh;
    }
}


