body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Back button */
.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color:#ffffff;
}

.back-btn:hover {
  background-position: -200% center;
}

/* Hero Title */
.hero {
  padding: 80px 10% 0px;
  text-align: left;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.4;
}

/* Project Card */
.project-card {
  margin: 40px 10%;

}

.project-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.project-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 5px;
}

.project-info {
  flex: 1;
}

.project-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-info p {
  margin-bottom: 15px;
  color: #bbb;
}

/* Buttons */
.btn{
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    background: linear-gradient(
    45deg,
    #ffffff 0%,     
    #ffffff 40%,    
    #e992cc 70%, 
    #ffffff 85%,   
    #ffffff 100%    
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: background-position 1s ease;
}

.btn:hover {
  background-position: -200% center;
  transform: 1.4;
}

/* Scrolling Tags */
.scroll-tags {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 15px 0;
  position: relative;
  margin-bottom: 5% ;
}

.tag-track {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.tag-set {
  display: flex;
}

.tag {
  display: inline-block;
  margin: 0 15px;
  padding: 8px 18px;
  background: #e992cc;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
}

/* Seamless loop */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Project Details */
.project-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0px 10%;
  text-align: left;
}

.project-details h3 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #e992cc;
}

.project-details p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Bottom navigation */
.project-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.nav-btn {
  min-width: 180px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .project-content {
    flex-direction: column;
    align-items: center;
  }

  .project-details {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .project-details {
    grid-template-columns: 1fr;
  }

  .project-nav {
    flex-direction: column;
  }
}
