:root {
    --primary: #d4af37; /* Metallic Gold */
    --background: #0a0a0a; /* True Black */
    --secondary-bg: #111827; /* Midnight Blue */
    --text-main: #e2e8f0; /* Light Gray */
    --text-dim: #94a3b8; /* Dimmed Gray */
    --accent-glow: rgba(212, 175, 55, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--secondary-bg);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

#hero {
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--primary);
    padding: 6rem 0;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.location {
    margin-top: 1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section {
    padding: 5rem 0;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-item {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--primary);
}

.experience-item h3 {
    color: var(--text-main);
}

.date {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.skill-category h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

footer {
    background: var(--secondary-bg);
    text-align: center;
    padding: 4rem 0;
}

.social-links a {
    color: var(--primary);
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 600;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-dim);
}