/* ==========================================
   BASE.CSS - Core Styles & Variables
   Edit colors and fonts here
   ========================================== */

/* CSS Variables - Change these to customize your site */
:root {
    /* CHANGED: Updated to True Black */
    --bg-primary: #000000;

    /* Secondary background (kept slightly lighter for contrast) */
    --bg-secondary: #111111;

    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --accent: #f5f5f5;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #111111;
    --text-secondary: #666666;
    --accent: #111111;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

.section {
    scroll-behavior: smooth;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}
