/* RAPID RUSH PROJECT */

.rapid-rush-project {
  background: black;
}

/* FONT OVERRIDE */
.rapid-rush-project .nav-title,
.rapid-rush-project .project-title {
  font-family: var(--font-rapid-rush);
  font-weight: 600;
}

/* =====================
   HERO
===================== */

.rapid-rush-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 / STATEMENT
===================== */

.rapid-rush-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

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

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

/* ✅ SINGLE SOURCE OF TRUTH */
.rapid-rush-intro .project-statement {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}


.rapid-rush-intro .project-statement p {
  margin-bottom: 24px;
}

.rapid-rush-intro .project-statement p:last-child {
  margin-bottom: 0;
}

.rapid-rush-intro .project-statement strong {
  font-weight: 600;
  color: white;
}

/* =====================
   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;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

/* WINDOWS ICON */
.windows-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
  opacity: 0.75;
}

.project-button:hover .windows-icon {
  filter: invert(0);
  opacity: 1;
}

/* =====================
   GALLERY
===================== */

.rapid-rush-gallery {
  padding: 100px 64px 140px;
}

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

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

.rapid-rush-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);
}

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

/* FIRST FRAME CENTER (odd count) */
.rapid-rush-gallery .frame:first-child {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
  .rapid-rush-gallery .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

