/* Particle background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.quantum-hero-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(65, 51, 23, 0.85);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(248, 147, 86, 0.25);
  color: #f0f0f0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Glow effect behind container */
.quantum-hero-container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at center, rgba(248, 147, 86, 0.2) 0%, rgba(65, 51, 23, 0) 70%);
  z-index: -1;
  opacity: 0.7;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes float {
  0% {
    transform: translateY(0px) translateZ(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) translateZ(10px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) translateZ(0px) rotate(0deg);
  }
}

.cat-illustration {
  margin: 0 auto 2rem;
  max-width: 350px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  transform-style: preserve-3d;
}

.cat-illustration img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cat-illustration:hover img {
  transform: scale(1.02);
}

h1 {
  color: #F89356;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #F89356, #f0f0f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(248, 147, 86, 0.5);
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.highlight {
  color: #F89356;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.cta-button.primary {
  background-color: #F89356;
  color: #413317;
  border-color: #F89356;
}

.cta-button.primary:hover {
  background-color: #e87d36;
  box-shadow: 0 5px 15px rgba(248, 147, 86, 0.3);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  color: #F89356;
  border-color: #F89356;
}

.cta-button.secondary:hover {
  background-color: rgba(248, 147, 86, 0.1);
  box-shadow: 0 5px 15px rgba(248, 147, 86, 0.2);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quantum-hero-container {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .cat-illustration {
    max-width: 280px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
}
