:root {
    --text-color: #ffffff;
    --text-color-light: #cccccc;
    --background-color: #1a1a1a;
    --accent-color: #888888;
    --spacing-unit: 2rem;
}

html {
    scroll-behavior: smooth;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-content a:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) 0;
}
.hero-image #glitch-logo-root {
    width: 200px;
    height: 250px;
    margin: 0 auto;
}
.hero-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 266px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.profile-image:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

#hero h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-color-light);
}

/* Sections */
section {
    padding: calc(var(--spacing-unit) * 3) 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-unit);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

/* Experience */
.experience-item {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.experience-item h4 {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.date {
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.experience-item ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.experience-item li {
    margin-bottom: 0.5rem;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-unit);
}

.skill-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.skill-category li {
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
}

/* Contact */
.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: var(--spacing-unit) 0;
    text-align: center;
    color: var(--text-color-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    .nav-content {
        gap: 1rem;
    }

    section {
        padding: calc(var(--spacing-unit) * 2) 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
} 