/* Special Styles for Tribute Page - Shoulders of Giants Theme */

.newton-quote-section {
  background: linear-gradient(135deg, 
    rgba(30, 58, 138, 0.95), 
    rgba(88, 28, 135, 0.95)), 
    url('https://page.gensparksite.com/v1/base64_upload/1472341df5be3c7b3cef038972936131') center/cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.newton-quote-overlay {
  background: radial-gradient(ellipse at center, 
    rgba(0,0,0,0.3) 0%, 
    rgba(0,0,0,0.7) 100%);
}

.giants-tribute-card {
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.1), 
    rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.giants-tribute-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.15), 
    rgba(255,255,255,0.08));
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mentor-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.mentor-portrait::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fbbf24, #3b82f6, #8b5cf6);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mentor-portrait:hover::before {
  opacity: 1;
}

.wisdom-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  position: relative;
  padding-left: 3rem;
}

.wisdom-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -1rem;
  font-size: 4rem;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.golden-braid-section {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid #f59e0b;
}

.timeline-connector {
  position: relative;
}

.timeline-connector::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, #3b82f6, transparent);
}

/* Animated background pattern */
@keyframes float-pattern {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.floating-pattern {
  position: absolute;
  opacity: 0.03;
  animation: float-pattern 20s ease-in-out infinite;
}

/* Soul Window Effects */
.soul-window {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, 
    rgba(147, 51, 234, 0.1), 
    rgba(59, 130, 246, 0.1));
}

.soul-window::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.soul-window:hover::after {
  opacity: 1;
  top: -100%;
  left: -100%;
}

/* Breathtaking Hero Animation */
@keyframes breathtaking-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.breathtaking-entrance {
  animation: breathtaking-reveal 1.2s ease-out forwards;
}

/* Memorial Glow Effect */
.memorial-glow {
  box-shadow: 
    0 0 20px rgba(147, 51, 234, 0.3),
    0 0 40px rgba(59, 130, 246, 0.2),
    0 0 60px rgba(147, 51, 234, 0.1);
}