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

:root {
    --black: #0b0b0d;
    --dark: #121216;
    --gold: #c9a96a;
    --text: #e6e6e6;
    --muted: #9b9b9b;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.background-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,106,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11,11,13,0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    letter-spacing: 4px;
}

.hero h2 {
    font-weight: 300;
    color: var(--gold);
    margin-top: 10px;
}

.line {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 25px;
    animation: expandLine 1.2s ease forwards;
}

.section {
    max-width: 900px;
    margin: auto;
    padding: 120px 40px;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
}

.timeline {
    margin-top: 20px;
}

.job {
    display: flex;
    gap: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(201,169,106,0.6);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skills span {
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skills span:hover {
    background: var(--gold);
    color: black;
}

.footer {
    text-align: center;
    padding: 40px;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: reveal 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.8s; }

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 180px;
    }
}
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: rgba(18,18,22,0.8);
    border: 1px solid rgba(201,169,106,0.25);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.project-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201,169,106,0.15);
}
