/* Simple dark theme for The Mugele-Lab */

h2 {
  text-align: center;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d1117;
  color: #e6edf3;
}

/* Header + Navigation */
header {
  background-color: #161b22;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #30363d;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #58a6ff;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro h2 {
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #30363d;
  color: #8b949e;
}

/* Timeline container */
.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
  border-left: 2px solid #30363d;
}

/* Each timeline entry */
.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

/* Dots on the line */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -4%;
  transform: translateX(-50%);
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: #58a6ff;
  border-radius: 50%;
  border: 2px solid #0d1117;
}

/* Date label */
.timeline-date {
  font-weight: bold;
  color: #8b949e;
  margin-bottom: 5px;
}

/* Content box */
.timeline-content {
  background-color: #161b22;
  padding: 15px;
  border: 1px solid #30363d;
  border-radius: 6px;
}

.timeline-content h3 {
  margin-top: 0;
  color: #e6edf3;
}


/* ── Resume page additions ── */

/* Contact bar */
.contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Contact bar 1*/
.contact-bar-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 36px;
  margin-top: -25px;
}

/* Resume sections */
.resume-section {
  margin-bottom: 10px;
}

/* Job entries */
.job {
  margin-bottom: 30px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.job-header h3 {
  margin: 0 0 2px 0;
  color: #e6edf3;
  font-size: 1rem;
}

.job-company {
  color: #58a6ff;
  font-size: 0.9rem;
  display: block;
}

.job-date {
  color: #8b949e;
  font-size: 0.85rem;
  white-space: nowrap;
  padding-top: 3px;
}

.job ul {
  margin: 0;
  padding-left: 20px;
  color: #c9d1d9;
}

.job ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Competency tags */
.competencies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.competency-tag {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #58a6ff;
}

.download-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #161b22;
  color: #58a6ff;
  border: 1px solid #58a6ff;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.download-btn:hover {
  background-color: #58a6ff;
  color: #0d1117;
}


