
/* Project Heading */

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0); /* or black if you're in dark mode */
  padding: 40px 0;
}

.marquee-track {
  list-style: none;
  display: flex;
  width: fit-content;
  animation: scroll-marquee 40s linear infinite;
}

.marquee-track li {
  flex-shrink: 0;
  font-size: clamp(60px, 20vw, 180px);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  padding-right: 120px;
  color: rgb(255, 255, 255); /* or white for dark background */
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* End Of Project Heading */




/* Project Description and Images setup CSS */


body {
  background: #fff;
  color: #000;
  font-family: 'Inter Tight', sans-serif;
  margin: 0;
  padding: 0;
}

.project-detail {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.meta-column {
  flex: 1;
  min-width: 280px;
}

.media-column {
  flex: 1.5;
  min-width: 280px;
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.meta-group {
  flex: 1;
  min-width: 40px;
}


.meta-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.meta-group {
  margin-bottom: 15px;
}

.meta-label {
  font-weight: 500;
  margin: 0;
}

.meta-value {
  margin: 5px 0 0;
}

.project-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 30px;
}

.media-column img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.fade-video {
  width: 100%;
  height: auto;
  border-radius: inherit;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.4s ease;
}

.fade-video.muted {
  filter: grayscale(100%);
}

.mute-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: black;
  color: white;
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  opacity: 0;
}

.fullscreen-icon {
  position: absolute;
  top: 12px;                  /* match mute button spacing */
  left: 12px;
  width: 36px;
  height: 36px;
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}


/* When hovered, show the fullscreen icon */
.video-wrapper:hover .fullscreen-icon {
  opacity: 1;
  transform: translateY(0);
}




/* RESPONSIVE STACKING ON MOBILE */
@media (max-width: 768px) {
  .project-meta {
    flex-direction: column;
  }

  .media-column {
    margin-top: 30px;
  }
}

/* End Of Project Description and Images setup CSS */



/* Popup video */


.video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-overlay-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 10px;
  background-color: black;
}

.video-overlay video {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

/* End of pop up video */