/* =============================================================
   BASE.CSS - CSS Variables, Reset, Core Utilities
   Digital-George.com 2026
   ============================================================= */

:root {
    --cyan: #00f5ff;
    --purple: #7000ff;
    --pink: #ff006e;
    --dark-1: #0a0e1a;
    --dark-2: #1a1f35;
    --green: #39ff14;
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-1);
    color: white;
}

/* ============== SECTION LAYOUT ============== */

.section {
    padding: 6rem 2rem;
    position: relative;
}

.section:nth-child(odd) {
    background: var(--dark-2);
}

.section:nth-child(even) {
    background: var(--dark-1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============== SECTION HEADERS ============== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-title strong {
    color: var(--cyan);
}

.section-desc {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============== FOOTER ============== */

.footer {
    padding: 3rem 0;
    background: #050505;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    color: #666;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

#current-year {
    color: var(--cyan);
    font-weight: bold;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 1024px) {
    .section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
}