/* 🪐 SOL.MAG | Global Shell Styles */

:root {
    --primary: #FF6600; /* Laser Orange */
    --void: #00001A; /* Deep Space Navy */
    --base: #FFFFFF;
    --text-primary: #1A1A1A;
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--base);
    color: var(--text-primary);
    overflow-x: hidden;
    font-family: var(--font-serif);
}

#solmag-shell {
    position: relative;
    width: 100vw;
}

/* GLOBAL NAV */
#global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: var(--font-mono);
    mix-blend-mode: difference;
    color: var(--base);
    pointer-events: none;
}

#global-nav > * {
    pointer-events: auto;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    color: var(--primary);
}

#global-progress-container {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

#global-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.menu {
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    display: flex;
    gap: 20px;
}

.menu span { cursor: pointer; opacity: 0.6; transition: 0.3s; }
.menu span:hover, .menu .active-tag { opacity: 1; color: var(--primary); }

/* THE STAGE */
#artifact-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000; /* Deep black for image clarity (No film) */
    z-index: 10;
}

/* ARCHIVE SECTION */
.archive-section {
    position: relative;
    width: 100vw;
    padding: 100px 40px;
    background: var(--base);
    z-index: 5;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.archive-header {
    text-align: center;
    margin-bottom: 80px;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.archive-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
}

/* LOADER */
#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* Standardized to black void */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 1s ease;
}

.loader-monolith {
    width: 2px;
    height: 40px;
    background: var(--primary);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 80px; opacity: 0.2; }
}

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mono-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    opacity: 0.4;
    letter-spacing: 0.1rem;
}
