/* Keep section spacing and header styles */
#projects-section {
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

#projects {
  width: 90%;
}

@media screen and (min-width: 767px) {
  #projects {
    width: 80%;
  }
}

#projects .icon {
  height: 45px;
  filter: invert(52%) sepia(35%) saturate(7002%) hue-rotate(302deg) brightness(101%) contrast(101%);
}

#projects h1 {
  font-size: 1.875rem;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid #ff47ac;
}


/* Card Container */
.project-container {
  background-color: #07122d;
  padding: 12px;
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.project-container:hover {
  transform: translateY(-15px);
}

/* Project Card Content */
.project-card {
  color: white;
  padding: 20px;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'DM Sans', sans-serif;
}

.project-description {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.project-images {
  display: flex;
  flex-wrap: wrap;
}

.project-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 10px;
}

/* Tech Stack Badges */
.project-techstack .badge {
  margin-right: 5px;
  margin-top: 5px;
  color: white;
  border: 1px solid #ff47ac;
  border-radius: 0.5rem;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Icons */
.github-icon,
.link-icon {
  width: 24px;
  height: 24px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(302deg) brightness(103%) contrast(103%);
  transition: filter 0.3s ease;
}

.github-icon:hover,
.link-icon:hover {
  filter: invert(59%) sepia(87%) saturate(2975%) hue-rotate(209deg) brightness(98%) contrast(88%);
}

.disabled {
  pointer-events: none;
  cursor: default;
}

.disabled .link-icon {
  filter: invert(71%) sepia(9%) saturate(18%) hue-rotate(325deg) brightness(82%) contrast(75%);
}

.private-repo {
  cursor: default;
}

a {
  text-decoration: none;
}
