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

/* Color Palette */
:root {
    --color-bg: #fff;
    --color-text: #121212;
    --color-accent: #1977bf;
    --color-highlight: #e0e0e0;
    --color-footer-bg: #121212;
    --color-footer-accent: #1977bf;
    --color-card-bg: #181818;
    --color-card-border: #1977bf44;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset CSS & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
    position: relative;
}

body.overlay-active {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 10vw, 8rem);
    margin: 0.2em 0;
    padding: 0 0.4em;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

/* Common Layout Components */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 5rem;
    text-align: center;
    color: var(--color-text);
    position: relative;
    width: 100%;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-text);
    margin: 6rem auto 0;
    position: relative;
    display: block;
    transform-origin: center center;
    will-change: transform, width;
    transition: width 0.3s ease-out;
}

/* Responsive adjustments for common components */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .section-title {
        margin-bottom: 3.5rem;
        padding: 0 1rem;
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        padding: 0 0.2em;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .section-title {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    h1 {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
        padding: 0 0.1em;
        line-height: 1.1;
    }
    .section-divider {
        width: 60px;
        margin: 4rem auto 0;
    }
}

/* Global Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.bg-accent { background: var(--color-accent); color: #fff; }
.rounded { border-radius: 16px; }
.shadow { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* Remove all section-specific, badge, scroll indicator, and footer/header styles from this file. */

/* Experience & Education Section */
.experience-section {
  background: #fff;
  padding: 64px 0 32px 0;
}
.experience-education-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.experience-column, .education-column {
  flex: 1 1 320px;
  min-width: 300px;
}
.timeline {
  margin-top: 24px;
  border-left: 2px solid #e0e0e0;
  padding-left: 24px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #bfc5ce;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.timeline-content {
  background: #181a1b;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 18px 24px 14px 24px;
  margin-left: 0;
  transition: box-shadow 0.2s;
}
.timeline-role {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.timeline-company {
  display: block;
  font-size: 1rem;
  color: #b3e0ff;
  font-weight: 500;
  margin-bottom: 2px;
}
.timeline-date {
  display: block;
  font-size: 0.98rem;
  color: #e0e0e0;
  margin-bottom: 8px;
}
.timeline-content p {
  color: #fff;
}
@media (max-width: 900px) {
  .experience-education-wrapper {
    flex-direction: column;
    gap: 32px;
  }
} 