/* 
 * Coming Soon Page Specific Styles
 * Matches: "Coming Soon.png"
 */

/* Lock body to 100vh with no scroll */
body.page-template-coming-soon {
    overflow: hidden !important;
    height: 100vh !important;
    height: 100dvh !important; /* For modern mobile browsers */
}

body.page-template-coming-soon #primary {
    height: 100%;
}

/* Hero Section */
.coming-soon-hero {
    display: flex;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-ivory);
    position: relative;
    overflow: hidden;
}


.cs-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xxl) 10%;
    background-color: var(--color-ivory);
}

.cs-logo {
    margin-bottom: 0.5rem;
}

.cs-logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.cs-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.title-divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-heritage-gold);
    margin: 0 auto var(--spacing-lg);
}

.cs-hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xl);
    max-width: 450px;
    line-height: 1.6;
}

/* Notification Form */
.cs-notify-form {
    display: flex;
    width: 100%;
    max-width: 450px;
    margin-bottom: var(--spacing-sm);
}

.cs-notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #D6D2C4;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-dark);
    outline: none;
    background-color: var(--color-white);
}

.cs-notify-form button {
    background-color: #9d8db3;
    color: var(--color-white);
    border: none;
    padding: 0 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cs-notify-form button:hover {
    background-color: #9d8db3; /* Darker gold */
}

.cs-form-note {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    align-self: flex-start;
    margin-left: calc(50% - 225px); /* Align with the start of the 450px form */
}

.cs-hero-image {
    flex: 1.2;
    background-color: var(--color-champagne);
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to right, transparent, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
}




/* ===== RESPONSIVE: Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .coming-soon-hero {
        display: block; /* Remove flex to stack absolutely */
    }

    .cs-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        mask-image: none !important;
        -webkit-mask-image: none !important;
        background-position: center bottom !important; /* Keep the girl visible at the bottom */
    }

    .cs-hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        /* Gradient: Solid at top for text readability, fading to transparent at bottom for image */
        background: linear-gradient(to bottom, rgba(250,248,245,1) 0%, rgba(250,248,245,0.95) 50%, rgba(250,248,245,0) 100%);
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Push text to the top */
        align-items: center;
    }


    .cs-notify-form {
        max-width: 100%;
    }

    .cs-form-note {
        margin-left: 0;
    }
}

/* ===== RESPONSIVE: Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
    .cs-hero-title {
        font-size: 2.25rem;
    }

    .cs-hero-desc {
        max-width: 100%;
    }

    .cs-notify-form {
        flex-direction: column;
        gap: 10px;
    }

    .cs-notify-form input {
        border: 1px solid #D6D2C4;
        border-radius: 4px;
        padding: 1.2rem;
    }

    .cs-notify-form button {
        border-radius: 4px;
        padding: 1.2rem;
    }

    .cs-form-note {
        margin-left: 0;
        text-align: center;
    }
}

