/* 
BlockZone Lab Navigation & Branding Styles
COPIED FROM: blockzonelab-vs3/index.html (lines 28-118)
Your perfected design system that we'll reuse across all pages
*/

:root {
    --primary: #00ff41;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    
    /* Neon Drop Color Palette */
    --neon-cyan: #00d4ff;
    --neon-green: #00ff00;
    --neon-red: #ff6b6b;
    --neon-gold: #ffd700;
    --dark-blue-1: #1a1a2e;
    --dark-blue-2: #16213e;
    --dark-blue-3: #0f3460;
    
    /* Neutral Grays */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
}

/* CRITICAL NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.loaded {
    opacity: 1;
    transform: translateY(0);
}

.navbar-container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 32px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    transform: translateY(-10px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* HERO BRANDING STYLES */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    padding-top: 60px; /* Account for fixed navbar */
}

.hero-content {
    text-align: center;
}

.hero-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 2rem;
}

.hero-brand-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    font-size: 78px;
    font-weight: bold;
    color: #000;
    background: var(--primary);
    border: 2px solid #ff4444;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease;
    font-family: 'Minion Pro', 'Minion Pro Bold', 'Times New Roman', serif;
}

.hero-brand-letter:nth-child(6) {
    /* The "Z" - make it look like the favicon */
    background: #FFFF00;
    border: 2px solid #ff4444;
    color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    font-size: 84px;
}

.hero-brand-letter:nth-child(10) {
    /* The space - make it green like the others */
    background: var(--primary);
    border: 2px solid #ff4444;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    width: 60px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-subtitle span {
    display: inline-block;
    margin: 0 0.5rem;
}
