//* ===============================
   RWC YTH PAGE (Gen-Z Neon Edition)
   =============================== */

body.page-template-page-rwc-yth {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ===============================
   HERO SECTION - SUPERSIZED EDITION
   =============================== */

.rwc-yth-hero {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at center, #050505 30%, #000 90%);
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 2;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SUPER BIG LOGO TEXT */
.rwc-yth-logo {
  font-size: 18rem;
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
  line-height: 0.8;
  text-align: center;
  animation: glowCycle 6s ease-in-out infinite;
  text-shadow:
    0 0 40px rgba(255,255,255,0.4),
    0 0 80px rgba(255,255,255,0.2);
}

/* Each letter bounces individually */
.rwc-yth-logo span {
  display: inline-block;
  animation: hop 2s ease-in-out infinite;
}

/* Neon Color Palette */
.rwc-yth-logo span:nth-child(1) { color: #ff0054; }
.rwc-yth-logo span:nth-child(2) { color: #ffbe0b; }
.rwc-yth-logo span:nth-child(3) { color: #3a86ff; }
.rwc-yth-logo span:nth-child(4) { color: #00f5d4; }
.rwc-yth-logo span:nth-child(5) { color: #ff006e; }
.rwc-yth-logo span:nth-child(6) { color: #8338ec; }

/* Bounce animation */
@keyframes hop {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-45px) rotate(-2deg); }
  60% { transform: translateY(-15px) rotate(2deg); }
}

/* Glow pulsing effect */
@keyframes glowCycle {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.4)); }
  50% { filter: drop-shadow(0 0 80px rgba(255,255,255,0.8)); }
}

/* Stagger delays for bounce rhythm */
.rwc-yth-logo span:nth-child(1) { animation-delay: 0s; }
.rwc-yth-logo span:nth-child(2) { animation-delay: 0.1s; }
.rwc-yth-logo span:nth-child(3) { animation-delay: 0.2s; }
.rwc-yth-logo span:nth-child(4) { animation-delay: 0.4s; }
.rwc-yth-logo span:nth-child(5) { animation-delay: 0.5s; }
.rwc-yth-logo span:nth-child(6) { animation-delay: 0.6s; }

/* ===============================
   RESPONSIVE HERO FIX
   =============================== */
@media (max-width: 992px) {
  .rwc-yth-logo { font-size: 9rem; }
}
@media (max-width: 768px) {
  .rwc-yth-hero {
    min-height: 80vh !important;
    margin-top: 80px; /* prevent overlap with nav */
    background-size: cover;
    background-position: center;
  }
  .rwc-yth-logo {
    font-size: 6rem !important;
    letter-spacing: 6px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .rwc-yth-logo { font-size: 4rem !important; letter-spacing: 3px; }
}

/* ===============================
   INTRO SECTION
   =============================== */
.rwc-yth-intro {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.rwc-yth-intro p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===============================
   VALUES SECTION
   =============================== */
.rwc-yth-values {
  padding: 100px 20px;
  text-align: center;
  background: #0d0d0d;
}

.rwc-yth-values h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.rwc-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
}

.value-box {
  padding: 40px 25px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* VALUE COLORS */
.value-box.red { background: #ff0054; }
.value-box.blue { background: #3a86ff; }
.value-box.yellow { background: #ffbe0b; color: #111; }
.value-box.purple { background: #8338ec; }
.value-box.green { background: #00f5d4; color: #111; }

.value-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* ===============================
   WHO WE SERVE
   =============================== */
.rwc-yth-serve {
  padding: 100px 20px;
  text-align: center;
  background: #111;
}

.rwc-yth-serve h2 {
  font-size: 2.25rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}

.rwc-serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.serve-box {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 50px 30px;
  color: #ccc;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.serve-box:hover {
  transform: scale(1.05);
  background: #222;
}

/* ===============================
   WHAT TO EXPECT
   =============================== */
.rwc-yth-expect {
  background: #0f0f0f;
  padding: 100px 20px;
  text-align: center;
}

.rwc-yth-expect h2 {
  font-size: 2.25rem;
  margin-bottom: 60px;
  color: #fff;
  text-transform: uppercase;
}

.rwc-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  max-width: 260px;
  color: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.step span {
  display: inline-block;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.step.red { background: #ff0054; }
.step.blue { background: #3a86ff; }
.step.yellow { background: #ffbe0b; color: #111; }

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* ===============================
   GENERAL RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .rwc-yth-intro p { font-size: 1.3rem; }
  .rwc-steps { flex-direction: column; align-items: center; }
  .value-box, .serve-box, .step { max-width: 90%; margin: 0 auto; }
}
