
/* Base layout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 2rem;
  background-color: #f3e8ff; /* Pale lavender */
  color: #1f2937; /* Deep charcoal */
  line-height: 1.6;
}

/* Headers */
h1, h2, h3 {
  color: #3b0764; /* Deep purple for headings */
}

/* Section layout */
header, section, footer {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

/* Links */
a {
  color: #6d28d9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Badge styles */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background-color: #d8b4fe;
  color: #3b0764;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Resume and external link buttons */
.resume-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #7c3aed;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.resume-btn:hover {
  background-color: #5b21b6;
  cursor: pointer;
}
