#projects .card {
  gap: 20px;
}

.card {
  display: flex;
  margin-bottom: 10px;
  padding: 20px;
  transition: background 0.3s;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .card {
    padding: 20px 0px;
    flex-direction: column;
  }
}
.card:hover {
  opacity: 1 !important;
  filter: blur(0px) !important;
  background-color: rgba(30, 41, 59, 0.5);
}
.card:hover .details .details-title {
  color: #5eead4;
  transition: color 0.3s;
}
.card .project-img,
.card .date {
  width: 30%;
  color: rgb(100, 116, 139);
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
}
@media (max-width: 1200px) {
  .card .project-img,
  .card .date {
    width: auto;
  }
}
.card .project-img img {
  width: 100%;
}
.card .details {
  width: 70%;
}
@media (max-width: 1200px) {
  .card .details {
    width: auto;
  }
}
.card .details .details-title {
  color: #e2e8f0;
  font-weight: 500;
}
.card .details .details-content {
  font-size: 0.875rem;
}

.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(29, 78, 216, 0.15), transparent 80%);
  transition: background 0.05s ease;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.tag-container .tag {
  background-color: rgba(94, 234, 212, 0.1);
  color: #5eead4;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.social-links {
  list-style: none;
  display: flex;
}
.social-links .social-links_li {
  margin-right: 1.25rem;
}
.social-links .social-links_li .social-links_li_a {
  display: block;
  text-decoration: inherit;
}
.social-links .social-links_li .social-links_li_a .social-links_svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  fill: #94a3b8;
}

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

#projects a {
  text-decoration: none;
  color: unset;
}

.section:not(#projects) a {
  text-decoration: none;
  color: #e2e8f0;
}
.section:not(#projects) a:hover,
.section:not(#projects) a b:hover {
  color: #5eead4;
}

b {
  color: #e2e8f0;
  font-weight: 500;
}

body {
  background-color: #0f172a;
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
body .main-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  body .main-container {
    flex-direction: column;
    padding: 0 20px;
  }
}
body .main-container .sidebar {
  position: sticky;
  top: 0;
  width: 35%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0;
}
@media (max-width: 1200px) {
  body .main-container .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0;
  }
}
body .main-container .sidebar .top-content h1 {
  color: #e2e8f0;
  font-size: 3rem;
}
body .main-container .sidebar .top-content h2 {
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 1.5px;
}
body .main-container .sidebar .top-content p {
  max-width: 20rem;
}
body .main-container .sidebar .top-content .nav-menu {
  margin-top: 50px;
}
body .main-container .sidebar .top-content .nav-menu ul {
  list-style: none;
}
body .main-container .sidebar .top-content .nav-menu li a {
  text-decoration: none;
  color: #94a3b8;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
}
body .main-container .sidebar .top-content .nav-menu li a span {
  width: 30px;
  height: 1px;
  background: #94a3b8;
  margin-right: 15px;
  transition: width 0.3s;
}
body .main-container .sidebar .top-content .nav-menu li a.active, body .main-container .sidebar .top-content .nav-menu li a:hover {
  color: #e2e8f0;
}
body .main-container .sidebar .top-content .nav-menu li a.active span, body .main-container .sidebar .top-content .nav-menu li a:hover span {
  width: 60px;
  background: #e2e8f0;
}
body .main-container .content {
  width: 50%;
  padding: 100px 0;
}
@media (max-width: 1200px) {
  body .main-container .content {
    width: 100%;
    padding: 0;
  }
}
body .main-container .content .section {
  margin-bottom: 120px;
  scroll-margin-top: 100px;
}
body .main-container .content .section .about-text-content {
  padding: 20px;
}
@media (max-width: 1200px) {
  body .main-container .content .section .about-text-content {
    padding: 0px;
  }
}
body .main-container .content #experience:hover .card,
body .main-container .content #projects:hover .card {
  opacity: 0.5;
  filter: blur(1px);
  transition: all 0.3s ease;
}
