/* ===== HERO BACKGROUND ===== */

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("../images/HomeBusiness_image.png") center/cover no-repeat;
    z-index: -2;
    filter: saturate(1.1) contrast(1.05);
}

/* dark overlay for readability */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: radial-gradient(
        circle at top,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.65)
    );

    z-index: -1;
}

/* ===== LAYOUT ===== */

.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 3rem 1rem;
    text-align: center;
    color: #fff;
}

/* logo reuse */
.logo {
    width: 220px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;

    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

/* ===== GLASS CARD ===== */

.glass-card {
    width: 100%;
    max-width: 560px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);

    border-radius: 16px;
    padding: 2rem;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255, 0, 0, 0.15),     /* thin red edge */
        0 0 25px rgba(255, 0, 0, 0.12);      /* soft outer glow */

    position: relative;
}

.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: flex-start;  /* keeps top focus */
    padding: 1.5rem 1rem 3rem;     /* reduced top padding */

    text-align: center;
    color: #fff;
}

/* ===== TEXT ===== */

.glass-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ===== FEATURES ===== */

.glass-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    position: relative;
}

.features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* ===== CTA ===== */

.cta-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.cta-box p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.cta-box button {
    background-color: var(--primary-color);
    color: #fff;

    padding: 0.9rem 1.5rem;
    border-radius: 8px;

    font-size: 1rem;
    font-weight: 600;

    transition: transform 0.2s ease, background 0.3s ease;
}

.cta-box button:hover {
    background-color: darkred;
    transform: translateY(-2px);
}

/* ===== FOOTER NOTE ===== */

.footer-note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .glass-card h1 {
        font-size: 2rem;
    }

    .logo {
        width: 140px;
    }
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.footer-sep {
    margin: 0 6px;
    color: rgba(255,255,255,0.4);
}


/* ===== FORM ===== */

.early-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.early-form input,
.early-form select {
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.early-form input {
    background: rgba(255,255,255,0.9);
}

.early-form select {
    background: rgba(255,255,255,0.9);
}

/* radio group */
.radio-group {
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.radio-group p {
    margin-bottom: 0.4rem;
}

.radio-group label {
    display: block;
    margin-bottom: 0.3rem;
}

/* submit button */
.early-form button {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

.early-form button:hover {
    background-color: darkred;
    transform: translateY(-2px);
}