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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-info {
  text-align: right;
  font-size: 0.9rem;
}

.contact-info a {
  color: #2563eb;
}

.contact-info a:visited {
  color: #7c3aed;
}

/* Section divider */
.divider {
  border-top: 2px solid #000;
  margin: 20px 0;
}

/* Sections */
section {
  margin-bottom: 25px;
}

section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

section p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Job/Project entries */
.entry {
  margin-bottom: 15px;
}

.entry h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.entry ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 0.9rem;
}

.entry li {
  margin-bottom: 5px;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #7c3aed;
}

/* Utility */
strong, b {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
  }

  .contact-info {
    text-align: left;
  }
}
