@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-color: #0c0d11;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --accent: #5e6ad2;
  --accent-glow: rgba(94, 106, 210, 0.4);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Dynamic Gradient Background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 40%);
  animation: pulse-bg 15s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes pulse-bg {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(5%, 5%); }
  100% { transform: scale(0.9) translate(-5%, -5%); }
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Typography & Layout */
header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 17, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.logo span {
  color: var(--accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  animation: fade-in-up 1s ease-out forwards;
}

.hero p.tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 span.gradient-text {
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .bio {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Experience Section */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: -1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.job {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  align-items: start;
}

.job-meta {
  color: var(--text-secondary);
}

.job-date {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.job-company {
  font-size: 1.1rem;
  font-weight: 400;
}

.job-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.job-details ul {
  list-style: none;
  color: var(--text-secondary);
}

.job-details li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.job-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover {
  background: #4a54c4;
}

/* Footer & Downloads */
.downloads {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .job { grid-template-columns: 1fr; gap: 1rem; }
}
