/* Hero aligned with collegiate home (public/static/styles/home.css) */
.jr-hero {
  min-height: 90vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 2rem 0 4rem;
}

.jr-hero__content {
  text-align: center;
  color: var(--jr-pure-white, #fff);
  z-index: 2;
  padding: 2em;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jr-hero__content h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 0 0 0.3em;
  line-height: 1.15;
  font-family: 'Lexend Peta', sans-serif;
  background: linear-gradient(135deg, #7eaded 0%, #ffffff 50%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: jr-titleGlow 3s ease-in-out infinite alternate;
}

@keyframes jr-titleGlow {
  0% {
    filter: drop-shadow(0 0 12px rgba(126, 173, 237, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(126, 173, 237, 0.85));
  }
}

.jr-hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.3em);
  margin: 0 0 0.5em;
  opacity: 0.95;
  font-weight: 500;
  max-width: 36rem;
  line-height: 1.45;
}

.jr-hero__sub {
  font-size: 0.95em;
  margin: 0 0 2em;
  opacity: 0.78;
  font-style: italic;
  font-weight: 300;
  max-width: 28rem;
  line-height: 1.5;
}

.jr-hero__buttons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.jr-hero__btn {
  padding: 1em 2.2em;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lexend Peta', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  display: inline-block;
}

.jr-hero__btn--primary {
  background: linear-gradient(135deg, #7eaded, #4a90e2);
  color: #000000;
}

.jr-hero__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #7eaded;
}

.jr-hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(126, 173, 237, 0.4);
}

.jr-hero__btn--secondary:hover {
  background: #7eaded;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(126, 173, 237, 0.4);
}

.jr-hero__scroll {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.75;
  z-index: 2;
}

.jr-hero__mouse {
  width: 15px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 15px;
  margin: 0 auto 0.5em;
  position: relative;
}

.jr-hero__mouse::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: jr-scrollDot 2s infinite;
}

@keyframes jr-scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

.jr-home-below {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.jr-home-below .jr-warn {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-top: 1rem;
}

.jr-home-below .jr-mini {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 1rem 0 0;
}

.jr-home-below .jr-mini a {
  color: #7eaded;
}

.hidden {
  display: none !important;
}
