/* STARSTEP PROJECT */

.starstep-project {
  background: black;
}
/* STARSTEP FONT OVERRIDE */
.starstep-project .nav-title,
.starstep-project .project-title {
  font-family: "bd-geminis", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* HERO */
.starstep-hero {
  padding: 140px 64px 80px;
  display: flex;
  justify-content: center;
}

.hero-video {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INTRO */
.starstep-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.starstep-intro .project-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.starstep-intro .project-meta {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
}

.starstep-intro .project-statement {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* ACTION */
.project-actions {
  display: flex;
  justify-content: center;
}

.project-button {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.project-button:hover {
  background: white;
  color: black;
}

/* GALLERY */
.starstep-gallery {
  padding: 100px 64px 140px;
}

.starstep-gallery h2 {
  max-width: 1100px;
  margin: 0 auto 48px;
  font-size: 1.6rem;
  text-align: center;
}

.starstep-gallery .gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* the sizing anchor */
.starstep-gallery .frame {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.starstep-gallery .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .starstep-gallery .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.os-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  opacity: 0.7;
}
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Windows icon */
.windows-icon {
  width: 16px;
  height: 16px;

  /* recolor black → white */
  filter: invert(1);

  opacity: 0.75;
  transform: translateY(1px);
}
.project-button:hover .windows-icon {
  opacity: 1;
  filter: invert(0);
}
/* ===== EXHIBITIONS & AWARDS ===== */

.linden-project .project-exhibitions {
  padding: 120px 64px;
}

.linden-project .project-exhibitions h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.linden-project .exhibitions-list {
  max-width: 760px;
  list-style: none;
  padding: 0;
}

.linden-project .exhibitions-list li {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.75;
  margin-bottom: 16px;
}


