/* Scroll Expansion Hero Component Styles */

.scroll-expansion-hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #FEFDFB;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -80px; /* Offset header padding */
  padding-top: 80px; /* Restore space for header */
}

/* Background Image */
.scroll-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  transition: opacity 0.1s ease;
}

.scroll-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.1s ease;
}

.scroll-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease;
}

/* Main Container */
.scroll-hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
}

.scroll-hero-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* Video Container */
.scroll-hero-media-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
  transition: width 0.1s ease, height 0.1s ease;
  max-width: 95vw;
  max-height: 85vh;
  z-index: 1;
}

.scroll-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.scroll-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Title Container */
.scroll-hero-title-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.scroll-hero-title-first,
.scroll-hero-title-second {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
  
  /* Monochrome holographic gradient text - black to grey */
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a1a 20%,
    #404040 40%,
    #808080 60%,
    #c0c0c0 80%,
    #000000 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  
  /* Slightly see-through effect */
  opacity: 0.85;
  
  /* Monochrome holographic glow effect - white/silver glows */
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(192, 192, 192, 0.3),
    0 0 30px rgba(128, 128, 128, 0.25),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 50px rgba(192, 192, 192, 0.15);
  
  /* Subtle shimmer animation */
  animation: holographic-shimmer 3s ease-in-out infinite;
}

@keyframes holographic-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (min-width: 768px) {
  .scroll-hero-title-first,
  .scroll-hero-title-second {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .scroll-hero-title-first,
  .scroll-hero-title-second {
    font-size: 4.5rem;
  }
}

/* Price Text */
.scroll-hero-price {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  margin: 1rem 0;
  transition: opacity 0.3s ease;
  
  /* Monochrome holographic gradient text - black to grey */
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a1a 20%,
    #404040 40%,
    #808080 60%,
    #c0c0c0 80%,
    #000000 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  
  /* Slightly see-through effect */
  opacity: 0.85;
  
  /* Monochrome holographic glow effect - white/silver glows */
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(192, 192, 192, 0.3),
    0 0 30px rgba(128, 128, 128, 0.25),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 50px rgba(192, 192, 192, 0.15);
  
  /* Subtle shimmer animation */
  animation: holographic-shimmer 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .scroll-hero-price {
    font-size: 1.5rem;
  }
}

/* CTA Button */
.scroll-hero-cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: bold;
  background-color: #BBAE9B;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease, opacity 0.3s ease;
  margin-top: 1rem;
}

.scroll-hero-cta:hover {
  background-color: #ffffff;
}

/* Content Section (appears after expansion) */
.scroll-hero-content-section {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .scroll-hero-content-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .scroll-hero-content-section {
    padding: 5rem 2rem;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .scroll-hero-media-container {
    max-width: 95vw;
    max-height: 85vh;
  }

  .scroll-hero-title-first,
  .scroll-hero-title-second {
    font-size: 2rem;
  }

  .scroll-hero-price {
    font-size: 1.125rem;
  }
}

