 /* CSS */
#space {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none; /* IMPORTANT: Let's clicks pass through to buttons and inputs */
}

body {
    background-color: #030303; /* jetblack for now will see what options there are for vantablack and if its possible */
    color: #f8fafc;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

.brand-wordmark {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f8fafc;
    text-shadow: 0 0 16px rgba(148, 163, 184, 0.24);
}

/* Glassmorphism */
.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-glow {
    color: #3b82f6 !important; 
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.5);
}

#logo-text {
    display: inline-flex;
    max-width: 100%;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
    #logo-text {
        flex-wrap: wrap;
        row-gap: 0.08em;
        font-size: clamp(0.5625rem, 2.85vw, 0.8125rem);
        letter-spacing: 0.05em;
    }

    .brand-wordmark {
        letter-spacing: 0.06em;
    }
}

/* controls the letters that will disappear */
.drop {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1;
    max-width: 200px; /*starting width */
    /*  shrinking and fading motion */
    transition: max-width 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

/* JS will add this class to trigger the slide */
.drop.collapsed {
    max-width: 0px;
    opacity: 0;
}

.metal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', 'Inter', sans-serif;
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.28);
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.2), rgba(100, 116, 139, 0.2) 40%, rgba(15, 23, 42, 0.45));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -10px 16px rgba(15, 23, 42, 0.45), 0 8px 26px rgba(15, 23, 42, 0.35);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.metal-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -8px 14px rgba(15, 23, 42, 0.35), 0 10px 30px rgba(71, 85, 105, 0.45);
}

.metal-link-primary {
    border-color: rgba(191, 219, 254, 0.62);
    background: linear-gradient(145deg, rgba(191, 219, 254, 0.36), rgba(59, 130, 246, 0.3) 40%, rgba(30, 41, 59, 0.5));
    color: #dbeafe;
}

.metal-link-primary:hover {
    border-color: rgba(191, 219, 254, 0.85);
    box-shadow: inset 0 1px 0 rgba(219, 234, 254, 0.5), inset 0 -8px 14px rgba(30, 58, 138, 0.3), 0 12px 34px rgba(59, 130, 246, 0.36);
}

.mobile-link.metal-link {
    min-width: 220px;
    font-size: 0.95rem;
    padding: 0.85rem 1.3rem;
    letter-spacing: 0.16em;
}

.fade-in { animation: fadeIn 2s ease-in; }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

