/* Cherry Pear Moody — Landing Page Styles */

:root {
  --neon-cherry: #ff007f;
  --neon-pear: #a6ff00;
  --neon-moody: #00f0ff;
  --color-bg: #030712; /* Darker slate for contrast */
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-logo: 'Orbitron', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Background Image & Vignette Overlay */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: opacity 0.5s ease-in-out, transform 0.15s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(3, 7, 18, 0.45) 0%,
    rgba(3, 7, 18, 0.88) 100%
  );
  z-index: -1;
}

/* Hero Centered Container */
.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  margin: auto;
  text-align: center;
}

/* Neon Logo Typography */
.logo-text {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 8vw, 4.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  user-select: none;
}

/* Base Neon Effects */
.logo-text span {
  display: inline-block;
  color: #ffffff;
}

/* Neon Pink (Cherry) */
.neon-cherry {
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--neon-cherry),
    0 0 40px var(--neon-cherry),
    0 0 80px var(--neon-cherry);
  animation: cherry-glow 4s ease-in-out infinite alternate, cherry-flicker 15s linear infinite;
}

/* Neon Lime (Pear) */
.neon-pear {
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--neon-pear),
    0 0 40px var(--neon-pear),
    0 0 80px var(--neon-pear);
  animation: pear-glow 4s ease-in-out infinite alternate 1.3s, pear-flicker 18s linear infinite;
}

/* Neon Cyan-Blue (Moody) */
.neon-moody {
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--neon-moody),
    0 0 40px var(--neon-moody),
    0 0 80px var(--neon-moody);
  animation: moody-glow 4s ease-in-out infinite alternate 2.6s, moody-flicker 20s linear infinite;
}

/* Vague Hero Content Styling */
.hero-title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Footer Styling */
.site-footer {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.4);
  font-weight: 300;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  z-index: 1;
}

/* Animation Keyframes: Neon Glow Breathing */
@keyframes cherry-glow {
  0% {
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 15px var(--neon-cherry), 0 0 30px var(--neon-cherry), 0 0 60px var(--neon-cherry);
  }
  100% {
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 25px var(--neon-cherry), 0 0 50px var(--neon-cherry), 0 0 100px var(--neon-cherry), 0 0 120px var(--neon-cherry);
  }
}

@keyframes pear-glow {
  0% {
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 15px var(--neon-pear), 0 0 30px var(--neon-pear), 0 0 60px var(--neon-pear);
  }
  100% {
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 25px var(--neon-pear), 0 0 50px var(--neon-pear), 0 0 100px var(--neon-pear), 0 0 120px var(--neon-pear);
  }
}

@keyframes moody-glow {
  0% {
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 15px var(--neon-moody), 0 0 30px var(--neon-moody), 0 0 60px var(--neon-moody);
  }
  100% {
    text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 25px var(--neon-moody), 0 0 50px var(--neon-moody), 0 0 100px var(--neon-moody), 0 0 120px var(--neon-moody);
  }
}

/* Animation Keyframes: Neon Ambient Flickers */
@keyframes cherry-flicker {
  0%, 9.9%, 10.1%, 10.2%, 10.3%, 10.5%, 15%, 54.9%, 55.1%, 55.2%, 55.4%, 60%, 100% {
    opacity: 1;
  }
  10%, 10.4%, 55%, 55.3% {
    opacity: 0.75;
  }
}

@keyframes pear-flicker {
  0%, 19.9%, 20.1%, 20.2%, 20.3%, 20.5%, 25%, 74.9%, 75.1%, 75.2%, 75.4%, 80%, 100% {
    opacity: 1;
  }
  20%, 20.4%, 75%, 75.3% {
    opacity: 0.8;
  }
}

@keyframes moody-flicker {
  0%, 29.9%, 30.1%, 30.2%, 30.3%, 30.5%, 35%, 84.9%, 85.1%, 85.2%, 85.4%, 90%, 100% {
    opacity: 1;
  }
  30%, 30.4%, 85%, 85.3% {
    opacity: 0.85;
  }
}

/* Mobile & Tablet Specific Centering of Layout */
@media (max-width: 768px) {
  .logo-text {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
