:root {
    --primary: #2c3e50;
    --accent: #3498db;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; margin: 0; color: #333; line-height: 1.6; background-color: var(--light-bg); }

nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 10%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 80%; top: 0; z-index: 1000; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { text-decoration: none; color: var(--primary); font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--accent); }

#hero { padding: 120px 10% 60px; text-align: center; background: var(--white); }
.profile-img { width: 150px; height: 150px; border-radius: 50%; border: 4px solid var(--accent); margin-bottom: 1.5rem; object-fit: cover; }
.subtitle { font-size: 1.5rem; color: var(--accent); margin-top: -10px; font-weight: 300; }
.summary { max-width: 800px; margin: 20px auto; color: #666; }

section { padding: 80px 10%; }
h2 { font-size: 2rem; border-bottom: 3px solid var(--accent); display: inline-block; margin-bottom: 2rem; }

.job { margin-bottom: 2.5rem; background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.date { color: var(--accent); font-weight: bold; font-size: 0.9rem; }

.skills-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.skills-grid span { background: var(--primary); color: white; padding: 10px 20px; border-radius: 30px; font-size: 0.85rem; }

.interest-links { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
.btn { text-decoration: none; background: var(--accent); color: white; padding: 12px 24px; border-radius: 5px; font-weight: 600; transition: 0.3s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3); }

footer { background: var(--primary); color: white; text-align: center; padding: 2rem; }
