/* ==========================================================================
   OUR JOURNEY - PURE PHOTO INTRO SCREEN
   ========================================================================== */

#intro-screen {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  z-index: 10;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.07), transparent 70%);
}

/* Central Hero Image Visual */
.intro-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomFadeIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-glow-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
  filter: blur(26px);
  animation: pulseRing 4s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-frame {
  width: 215px;
  height: 215px;
  border-radius: 50%;
  position: relative;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.15));
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-frame:hover, .hero-frame:active {
  transform: scale(1.06);
}

.hero-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-frame:hover .hero-inner img {
  transform: scale(1.08);
}

/* Keyframes */
@keyframes zoomFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
