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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

/* Container */
.container {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  color: #2c3e50;
}

header p {
  font-size: 1.1rem;
  color: #666;
}

/* Section Headings */
section {
  margin-bottom: 2rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #34495e;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* List Styles */
ul {
  list-style: disc inside;
  margin-left: 1rem;
}

/* Resume Items */
.job, .project {
  margin-bottom: 1.5rem;
}

.job h3, .project h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.job .meta, .project .meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 1.5rem;
  }

  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.25rem;
  }
}
