/* 
 * Hero Graphics Integration CSS
 * Seamless blending with boone51.com background gradients
 * Sophisticated minimalist aesthetic matching Lisa Klein's design
 */

/* Base hero section styles */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero graphics container */
.hero-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.6s ease;
}

.hero-graphic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

/* Responsive scaling */
@media (max-width: 1200px) {
  .hero-graphic {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-graphic {
    opacity: 0.6;
  }
  
  .hero-graphic svg {
    object-fit: contain;
  }
}

/* Content overlay positioning */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(1px);
}

/* Gradient blending for different products */
.hero-main {
  background: radial-gradient(ellipse at center, 
    rgba(20, 184, 166, 0.15) 0%,
    rgba(99, 102, 241, 0.12) 50%,
    rgba(139, 69, 231, 0.08) 100%);
}

.hero-formcatch {
  background: radial-gradient(ellipse at 40% 30%, 
    rgba(20, 184, 166, 0.18) 0%,
    rgba(99, 102, 241, 0.12) 70%,
    rgba(139, 69, 231, 0.06) 100%);
}

.hero-pinpoint {
  background: radial-gradient(ellipse at 60% 40%, 
    rgba(34, 211, 238, 0.20) 0%,
    rgba(99, 102, 241, 0.12) 60%,
    rgba(20, 184, 166, 0.08) 100%);
}

.hero-statuscraft {
  background: radial-gradient(ellipse at 50% 30%, 
    rgba(20, 184, 166, 0.22) 0%,
    rgba(34, 211, 238, 0.15) 50%,
    rgba(99, 102, 241, 0.08) 100%);
}

.hero-scriptcraft {
  background: radial-gradient(ellipse at 40% 60%, 
    rgba(139, 69, 231, 0.20) 0%,
    rgba(168, 85, 247, 0.15) 50%,
    rgba(99, 102, 241, 0.12) 80%,
    rgba(34, 211, 238, 0.08) 100%);
}

.hero-linklab {
  background: radial-gradient(ellipse at 30% 50%, 
    rgba(99, 102, 241, 0.20) 0%,
    rgba(34, 211, 238, 0.15) 40%,
    rgba(20, 184, 166, 0.12) 70%,
    rgba(168, 85, 247, 0.08) 100%);
}

.hero-flightfinder {
  background: radial-gradient(ellipse at 55% 35%,
    rgba(34, 211, 238, 0.18) 0%,
    rgba(59, 130, 246, 0.16) 45%,
    rgba(99, 102, 241, 0.10) 75%,
    rgba(20, 184, 166, 0.06) 100%);
}

.hero-shopsmart {
  background: radial-gradient(ellipse at 35% 40%,
    rgba(20, 184, 166, 0.18) 0%,
    rgba(34, 211, 238, 0.14) 40%,
    rgba(99, 102, 241, 0.10) 75%,
    rgba(168, 85, 247, 0.06) 100%);
}

.hero-portfoliosys {
  background: radial-gradient(ellipse at 50% 45%,
    rgba(99, 102, 241, 0.18) 0%,
    rgba(168, 85, 247, 0.14) 45%,
    rgba(34, 211, 238, 0.10) 75%,
    rgba(20, 184, 166, 0.06) 100%);
}

.hero-snapog {
  background: radial-gradient(ellipse at 45% 35%,
    rgba(244, 114, 182, 0.16) 0%,
    rgba(168, 85, 247, 0.14) 45%,
    rgba(59, 130, 246, 0.10) 75%,
    rgba(34, 211, 238, 0.06) 100%);
}

/* Glass morphism effects for content cards */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Scroll animations that work with the graphics */
.hero-section.scrolled .hero-graphic {
  transform: translateY(-20px);
  opacity: 0.6;
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Performance optimizations */
.hero-graphic svg * {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero-graphic svg animate,
  .hero-graphic svg animateTransform,
  .hero-graphic svg animateMotion {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-graphic {
    opacity: 0.4;
  }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  .hero-graphic svg {
    mix-blend-mode: plus-lighter;
  }
  
  .hero-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Parallax effect for desktop */
@media (min-width: 1024px) {
  .hero-graphic-parallax {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
}

/* Loading animation */
.hero-graphic.loading {
  opacity: 0;
  transform: scale(1.05);
}

.hero-graphic.loaded {
  opacity: 0.8;
  transform: scale(1);
  transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Typography integration */
.hero-title {
  font-weight: 300;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
}

.hero-subtitle {
  opacity: 0.9;
  backdrop-filter: blur(1px);
}

/* Button integration with graphics */
.hero-cta {
  backdrop-filter: blur(10px);
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}
