/* ============================================
   CASE STUDY Noahticks (Creative Editorial)
   ============================================ */

/* --- Base --- */
body {
  background: #fcfcfc;
  color: #000;
  margin: 0;
  overflow-x: hidden;
}

.main-content-wrapper {
  background: #fcfcfc !important;
  box-shadow: none !important;
  padding-top: 15vh; /* Space for fixed header */
}

/* --- Font Scoping --- */
.cs-body-text,
.vid-cap,
.info-val,
.stat-label,
.hz-sub {
  font-family: 'Inter', sans-serif;
}



/* --- Page Transition --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.page-transition h1 {
  font-family: 'Bangers', cursive;
  font-size: 8vw;
  color: #fff;
  text-transform: uppercase;
}

/* =======================================
   VIDEO WALL ENTRY (The New Hero)
   ======================================= */
.video-hero-sequence {
  position: relative;
  padding-bottom: 15vw;
}

.sticky-title-wrapper {
  position: sticky;
  top: 15vh;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.massive-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 18vw, 300px);
  line-height: 0.8;
  color: #efefef; /* Light grey so videos stand out over it */
  margin: 0;
  letter-spacing: -2px;
}

.staggered-videos {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: -15vw auto 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3vw;
  padding: 0 5vw;
}

.video-card {
  position: relative;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.vid-cap {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-top: 1.5vw;
}

/* Asymmetric Grid Placement */
.vid-1 { grid-column: 1 / 8; margin-top: 25vw; }
.vid-2 { grid-column: 8 / -1; margin-top: 5vw; }
.vid-3 { grid-column: 3 / 11; margin-top: 15vw; }

/* =======================================
   MARQUEE
   ======================================= */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 2vw 0;
  background: #ffe600;
}
.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-inner span {
  font-family: 'Bangers', cursive;
  font-size: clamp(30px, 5vw, 80px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  padding: 0 3vw;
}
.marquee-inner .dot { color: #fff; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =======================================
   INFO & TEXT BLOCK
   ======================================= */
.cs-section {
  padding: 15vw 5vw;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 10vw;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 4vw;
  border-right: 1px solid #ddd;
  padding-right: 5vw;
}
.info-item { display: flex; flex-direction: column; gap: 5px; }
.info-key { font-family: 'Bangers', cursive; font-size: 24px; color: #ccc; letter-spacing: 2px; }
.info-val { font-size: 16px; font-weight: 500; color: #000; }

.text-col h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(40px, 6vw, 100px);
  line-height: 0.9;
  margin: 0 0 4vw 0;
  color: #000;
}
.cs-body-text {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.7;
  color: #444;
  margin-bottom: 2vw;
  max-width: 800px;
}

/* =======================================
   HORIZONTAL SCROLL GALLERY
   ======================================= */
.hz-scroll-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
}
.hz-wrapper {
  display: flex;
  gap: 15vw;
  padding: 0 10vw;
  width: max-content;
  align-items: center;
}
.hz-text-item {
  width: 40vw;
  flex-shrink: 0;
}
.hz-text-item h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(50px, 8vw, 150px);
  line-height: 0.85;
  margin: 0 0 2vw 0;
  color: #ffe600;
}
.hz-text-item p {
  color: #aaa;
}
.hz-img-item {
  width: 60vw;
  flex-shrink: 0;
}
.hz-img-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* =======================================
   STATS SECTION
   ======================================= */
.stats-section {
  padding: 15vw 5vw;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
}
.stat-number {
  font-family: 'Bangers', cursive;
  font-size: clamp(80px, 12vw, 200px);
  color: #000;
  line-height: 0.8;
  margin-bottom: 2vw;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
}

/* =======================================
   BIG CLOSING STATEMENT
   ======================================= */
.big-statement {
  padding: 10vw 5vw 20vw 5vw;
  text-align: center;
}
.big-statement h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(50px, 10vw, 180px);
  line-height: 0.9;
  margin: 0;
  color: #000;
}
.view-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 20px 40px;
  border: 2px solid #000;
  border-radius: 50px;
  margin-top: 5vw;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.view-live-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #ffe600;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.view-live-btn:hover { border-color: #ffe600; }
.view-live-btn:hover::before { transform: translateY(0); }

/* --- Utilities --- */
.line-wrapper {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1024px) {
  .cs-section { grid-template-columns: 1fr; gap: 8vw; }
  .info-col { border-right: none; padding-right: 0; border-bottom: 1px solid #ddd; padding-bottom: 8vw; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
  
  .hz-text-item { width: 80vw; }
  .hz-img-item { width: 85vw; }

  .vid-1 { grid-column: 1 / -1; margin-top: 30vw; }
  .vid-2 { grid-column: 1 / -1; margin-top: 10vw; }
  .vid-3 { grid-column: 1 / -1; margin-top: 10vw; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 15vw; }
  .info-col { flex-direction: column; gap: 6vw; }
}
