/* ============================================
   Node Creative - Dark Theme CSS
   Built: 2026-04-16
   ============================================ */

/* Base */
html, body {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    color: #ffffff !important;
}

p, li { color: #e0e0e0 !important; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent) !important;
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 101;
}

.logo span { color: #c8ff00 !important; }

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav li { margin: 0 !important; padding: 0 !important; }

nav a {
    color: #a0a0a0 !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover { color: #ffffff !important; }

nav .btn {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    flex-shrink: 0;
}

nav .btn-primary {
    background: #c8ff00 !important;
    color: #000000 !important;
}

nav .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

/* ============================================
   HERO SECTION - FIXED BUTTON CENTERING
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-align: center;
    width: 100%;
}

.hero p {
    font-size: 1.2rem;
    color: #a0a0a0 !important;
    max-width: 500px;
    margin-bottom: 2rem;
    text-align: center;
}

/* CTA BUTTONS - TRUE CENTERING */
.cta-group {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.cta-group .btn {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.875rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    min-width: 160px;
    text-align: center !important;
}

.btn-primary {
    background: #c8ff00 !important;
    color: #000000 !important;
}

.btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
}

.btn-primary:hover { background: #9bc200 !important; }
.btn-secondary:hover { background: rgba(255,255,255,0.1) !important; }

/* Hero Visual */
.hero-visual { 
    position: relative; 
    height: 500px; 
    width: 100%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #141414;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-1 { top: 20%; right: -10%; }
.card-2 { bottom: 20%; right: 5%; }
.card-3 { top: 50%; right: -20%; }

/* CARD/STAT VALUES */
.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c8ff00 !important;
}

.card-value.font-display { color: #c8ff00 !important; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c8ff00 !important;
    display: block;
}

.stat-number.font-display { color: #c8ff00 !important; }
span.stat-number, .font-display.stat-number, .stat-number span {
    color: #c8ff00 !important;
}

/* COLORS */
.warm, .has-warm-color, span.warm { color: #ff6b35 !important; }
.accent, .has-accent-color, span.accent { color: #c8ff00 !important; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #c8ff00;
    transform: translateY(-4px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stats-grid .stat {
    background: #141414;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #7ab300 0%, #4d6600 100%);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    margin: 0;
}

.cta-section h2 { color: #000000 !important; margin-bottom: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #222;
    background: #0a0a0a !important;
}

footer p { color: #a0a0a0 !important; }

/* ============================================
   Animations
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        position: static !important;
        transform: none !important;
    }
    
    nav ul {
        position: static !important;
        transform: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem 1rem !important;
        justify-content: center !important;
        width: 100%;
    }
    
    nav li { margin: 0 !important; padding: 0 !important; }
    nav a { font-size: 0.8rem !important; padding: 0.25rem 0.5rem !important; }
    nav .btn { font-size: 0.75rem !important; padding: 0.4rem 0.8rem !important; }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .cta-group { flex-direction: column !important; width: 100% !important; }
    .cta-group .btn { width: 100% !important; max-width: 280px !important; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FEATURED WORK
   ============================================ */
.featured-work {
    padding: 3rem 0;
    margin: 2rem 0;
}

.featured-work-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-work-card:hover {
    border-color: #c8ff00;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.featured-work-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.featured-work-info h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
}

.featured-work-info p {
    font-size: 0.95rem;
    color: #a0a0a0 !important;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.featured-work-link {
    font-size: 0.85rem;
    color: #c8ff00 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-work-link:hover { color: #9bc200 !important; }
