/* Bikewave project specific styles */
body {
  min-height: 400vh;
}

header {
  position: fixed;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
}

.moving {
  position: absolute;
  top: 30%;
  left: var(--tx, 60%);
  font-size: 12vw;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.08;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  padding-top: 110px;
}

.project-title {
  font-size: 14vw;
  font-weight: 500;
  line-height: 0.9;
  position: relative;
  left: var(--tx, 0);
  margin-bottom: 2rem;
}

.project-subtitle {
  font-size: 2.5vw;
  font-weight: 300;
  max-width: 60%;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 3rem;
}

.tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: #fff;
  color: #121212;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.info-section {
  min-height: 100vh;
  padding: 10vh 2rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.info-block h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-block p,
.info-block ul {
  font-size: 1.8vw;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block li {
  margin-bottom: 0.5rem;
}

.info-block li:before {
  content: "→ ";
  opacity: 0.5;
  margin-right: 0.5rem;
}

.description-section {
  padding: 10vh 2rem;
}

.description-text {
  font-size: 4vw;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 85%;
}

.screenshot-section {
  min-height: 100vh;
  padding: 20vh 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.screenshot-placeholder {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.6;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
  transform: translateY(var(--ty, 0));
  will-change: transform;
}

.screenshot-wrapper > * {
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  opacity: 0.8;
}

.website-note {
  align-items: center;
  width: fit-content;
  gap: 0.2rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  margin-top: 2rem;
}

.website-note:last-child {
  margin-top: 1rem;
}

.website-note a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.gif-1 {
  position: absolute;
  right: 15%;
  bottom: 15%;
  max-width: 300px;
}

.responsive-screenshot {
  width: 100%;
}

.responsive-screenshot img {
  width: 100%;
  border-radius: 1rem;
}

.screenshot-title {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  text-align: center;
}

.screenshot-title::before {
  content: "Feature";
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero-section {
    height: 100%;
    min-height: 70vh;
    justify-content: center;
    padding-top: 15vh;
  }

  .project-title {
    font-size: 20vw;
  }

  .project-subtitle {
    font-size: 5vw;
    max-width: 90%;
  }

  .info-section {
    gap: 4rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-block p,
  .info-block ul {
    font-size: 4.5vw;
  }

  .description-text {
    font-size: 6vw;
    max-width: 100%;
  }

  .navigation {
    padding: 1rem;
  }

  .gif-1 {
    align-self: flex-end;
    margin-right: 5%;
    margin-top: -5%;
    position: initial;
    max-width: 40vw;
    margin-bottom: -10%;
  }

  .screenshot-section {
    min-height: 60vh;
    padding: 4vh 16px;
    gap: 1rem;
  }

  .screenshot-title {
    font-size: 8vw;
  }

  .moving {
    top: 18%;
  }

  .moving.valduero {
    top: 30%;
  }
  .screenshot-title {
    margin-bottom: 16px;
  }
}
