/* =========================================
   CATALYST SUBDOMAIN SPECIFIC STYLES
   ========================================= */


/* --- COMING SOON HERO --- */
.coming-soon-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 0 5%;
}

.coming-soon-label {
    background: rgba(211, 84, 0, 0.08);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.coming-soon-hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 20px;
}

.coming-soon-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav-btn-special {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .coming-soon-hero h1 {
        font-size: 3.5rem;
    }
    
    .coming-soon-hero p {
        font-size: 1.1rem;
    }
}