/* ========================================================= */
/* === FILE: /assets/css/jz-coming-soon.css === */
/* === DESCRIPTION: v1 - Styling for Coming Soon / Lab Page === */
/* ========================================================= */

/* 1. PAGE LAYOUT */
body, html {
    background-color: #0f172a !important; /* Force Dark Background */
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.soon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Padding top accounts for the 50px fixed navbar */
    padding-top: 30px; 
    min-height: 60vh;
    text-align: center;
    font-family: sans-serif;
}

/* 2. GLOWING ICON */
.soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 3. RGB TEXT TITLE */
.soon-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    background: linear-gradient(90deg, 
        #ff0000, #ffff00, #00ff00, 
        #00ffff, #0000ff, #ff00ff);
    background-size: 400% auto;
    
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    animation: rgbFlow 8s linear infinite;
}

@keyframes rgbFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 4. SUBTEXT */
.soon-text {
    color: #94a3b8; /* Slate */
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 500px;
    line-height: 1.6;
}

/* 5. RETURN BUTTON */
.soon-btn {
    margin-top: 30px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.soon-btn:hover {
    background: #f59e0b; /* Gold */
    color: #000;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    border-color: #f59e0b;
}