/* Ubuntu Terminal Theme — white on purple */
:root {
  --background: #300a24;
  --foreground: #eeeeec;
  --accent: #c061cb;
}

/* Selection highlight */
::selection {
  background: rgba(192, 97, 203, 0.35);
}

/* Links */
a {
  color: #ad7fa8;
}

a:hover {
  color: #c061cb;
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #300a24;
}

::-webkit-scrollbar-thumb {
  background: #5e2750;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c061cb;
}

/* Hero section — compact card with avatar + text */
.hero {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.hero-avatar {
  width: 207px;
  min-width: 207px;
  height: 207px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.hero-text {
  line-height: 1.5;
}

.hero-text h1 {
  margin: 0;
  font-size: 1.73rem;
}

.hero-text p {
  margin: 0.22rem 0;
  font-size: 1.15rem;
}

.hero-text blockquote {
  margin: 0.32rem 0;
  font-size: 1.09rem;
  padding: 0 0 0 0.9rem;
}

.hero-text .social-links {
  font-size: 1.02rem;
  margin-top: 0.4rem;
}

@media (max-width: 684px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p,
  .hero-text blockquote,
  .hero-text .social-links {
    font-size: 1rem;
  }
}

.hero-text .social-links a {
  white-space: nowrap;
}

/* Awards list */
.awards-list ul {
  list-style: none;
  padding: 0;
}

.awards-list li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(192, 97, 203, 0.2);
}

.awards-list li:last-child {
  border-bottom: none;
}

.awards-list code {
  background: none;
  color: var(--accent);
  font-size: 0.85em;
  padding: 0;
}

/* Organization logos */
.org-logo {
  height: 26px;
  vertical-align: middle;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  margin-right: 6px;
}

.experience-item {
  margin-bottom: 1.6rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

.experience-item .role {
  font-weight: bold;
  color: var(--accent);
}

.experience-item .org-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px 0;
}

.experience-item p {
  margin: 4px 0;
  opacity: 0.9;
}
