/* ===== HANNAH YAN EXACT REPLICA THEME =====   Minimalist black and white design with large typography   Direct inspiration from https://www.hannahyan.com/*/ /* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fb 100%);
  overflow-x: hidden;
} /* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
h1 {
  font-size: 4rem;
  font-weight: 300;
}
h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
p {
  margin-bottom: 1.5rem;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
}
a {
  color: #7c3aed;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #5b21b6;
  transform: translateY(-1px);
} /* === LAYOUT CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.animate-in {
  opacity: 1;
  transform: translateY(0);
} /* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(147, 20, 237, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: #1a1a1a;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #7c3aed;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 2px;
}
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: #000000;
  margin: 3px 0;
  transition: 0.3s;
} /* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(168, 85, 247, 0.03) 50%,
    rgba(124, 58, 237, 0.02) 100%
  );
  pointer-events: none;
}

.hero .container {
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-title {
  font-size: 5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero-title .typing-text {
  border-right: 3px solid #7c3aed;
  animation: blink-cursor 1s infinite;
}

@keyframes blink-cursor {
  0%,
  50% {
    border-color: #7c3aed;
  }
  51%,
  100% {
    border-color: transparent;
  }
}
.hero-subtitle {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-description {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: #7c3aed;
  border: 2px solid #7c3aed;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}
.btn-outline:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.hero-image {
  display: flex;
  justify-content: center;
}
.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #7c3aed, #a855f7) border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}
.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
} /* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
} /* === ABOUT SECTION === */
.about-content {
  margin: 0 auto;
  text-align: center;
}
.about-text {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-card {
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
} /* === EDUCATION SECTION === */
.education-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.education-item {
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.education-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}
.degree-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.education-meta {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.education-details p {
  margin-bottom: 1rem;
  color: #4a5568;
}
.education-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.education-tags span {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #4a5568;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.education-tags span:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}
.education-highlights {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.education-highlights li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}
.education-link {
  color: #7c3aed;
  border-bottom: 1px solid #7c3aed;
  font-weight: 500;
} /* === EXPERIENCE SECTION === */
.experience-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.experience-item {
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}
.job-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.experience-meta {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.experience-highlights {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.experience-highlights li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}
.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.experience-tags span {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #4a5568;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.experience-tags span:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
} /* === PROJECTS SECTION === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.project-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  backdrop-filter: blur(10px);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}
.project-image {
  overflow: hidden;
  height: 200px;
  border-radius: 20px 20px 0 0;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}
.project-description {
  color: #666666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.project-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}
.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  color: #7c3aed;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}
.project-link:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
} /* === SKILLS SECTION === */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.skill-category {
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}
.category-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.skill-tags span {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #4a5568;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.skill-tags span:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
} /* === ACHIEVEMENTS SECTION === */
.achievements-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.achievement-item {
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.06);
  backdrop-filter: blur(10px);
}

.achievement-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.achievement-date {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 20px;
  animation: subtle-pulse 3s infinite;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

@keyframes subtle-pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
  }
}
.achievement-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.achievement-meta {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.achievement-item p {
  color: #4a5568;
  margin-bottom: 1.5rem;
}
.achievement-link {
  color: #7c3aed;
  border-bottom: 1px solid #7c3aed;
  font-weight: 500;
} /* === CONTACT SECTION === */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-list {
  margin-bottom: 3rem;
}
.contact-list div {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #4a5568;
}
.contact-list strong {
  color: #1a1a1a;
  font-weight: 600;
}
.contact-list a {
  color: #7c3aed;
  border-bottom: 1px solid #7c3aed;
  font-weight: 500;
}
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-socials a {
  color: #7c3aed;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}
.contact-socials a:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
} /* === FOOTER === */
.footer {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border-top: 1px solid rgba(124, 58, 237, 0.3);
  padding: 3rem 0;
  margin-top: 4rem;
  box-shadow: 0 -10px 30px rgba(124, 58, 237, 0.1);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-content p {
  color: #ffffff;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #ffffff;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #e0d4f7;
} /* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
} /* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .container {
    padding: 0 1rem;
  }
  .nav-container {
    padding: 1rem;
  }
  /* Reduce animations on mobile for better performance */
  .achievement-item {
    animation: none;
  }
  .btn::before {
    display: none;
  }
  .section {
    transition: opacity 0.5s ease;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .project-image {
    height: 200px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === ADDITIONAL MODERN ENHANCEMENTS === */

/* Smooth scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

/* Selection styling */
::selection {
  background: rgba(124, 58, 237, 0.2);
  color: #1a1a1a;
}

::-moz-selection {
  background: rgba(124, 58, 237, 0.2);
  color: #1a1a1a;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.project-link:focus,
.contact-socials a:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Improved loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text > *:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-text > *:nth-child(3) {
  animation-delay: 0.5s;
}
.hero-image {
  animation-delay: 0.7s;
}

/* Subtle parallax effect for hero background */
@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: float-bg 20s ease-in-out infinite;
  }

  @keyframes float-bg {
    0%,
    100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-10px) scale(1.02);
    }
  }
}

/* Enhanced card hover effects */
.education-item:hover,
.experience-item:hover,
.skill-category:hover,
.achievement-item:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Improved typography hierarchy */
.section-title {
  letter-spacing: -0.025em;
}

.hero-title {
  letter-spacing: -0.02em;
}

/* Better visual hierarchy for metadata */
.education-meta,
.experience-meta,
.achievement-meta {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Improved focus indicators */
.skill-tags span:focus,
.education-tags span:focus,
.experience-tags span:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}
