/* ===================================
   $BEPIN Landing Page Styles
   Design language from C:\pineheads
   =================================== */

/* CSS Variables - Color Palette */
:root {
  --background: hsl(220, 15%, 8%);
  --foreground: hsl(45, 100%, 96%);
  --primary: hsl(45, 100%, 60%);
  --secondary: hsl(280, 70%, 50%);
  --accent: hsl(160, 100%, 45%);
  --card: hsl(220, 15%, 12%);
  --border: hsl(220, 15%, 20%);
  --muted: hsl(220, 10%, 60%);
  
  --font-body: 'Mansalva', cursive;
  --font-heading: 'Bangers', cursive;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Decorations */
.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco-text {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: bold;
  letter-spacing: 0.05em;
  user-select: none;
  opacity: 0.03;
}

.deco-1 {
  top: 10%;
  left: 5%;
  font-size: clamp(6rem, 15vw, 14rem);
  color: var(--primary);
  transform: rotate(-5deg);
}

.deco-2 {
  bottom: 15%;
  right: 5%;
  font-size: clamp(5rem, 12vw, 11rem);
  color: var(--secondary);
  transform: rotate(8deg);
}

.deco-3 {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  color: var(--accent);
}

/* Glow Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

.orb-1 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: var(--primary);
  opacity: 0.08;
  top: 10%;
  left: -5%;
}

.orb-2 {
  width: clamp(250px, 35vw, 450px);
  height: clamp(250px, 35vw, 450px);
  background: var(--secondary);
  opacity: 0.06;
  bottom: 5%;
  right: -10%;
  animation-delay: 2s;
}

/* Main Container */
.landing-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  text-align: center;
  max-width: 600px;
  animation: fade-in-up 0.8s ease-out;
}

/* Logo / Title */
.logo {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-shadow: 
    0 0 30px hsla(45, 100%, 60%, 0.4),
    0 0 60px hsla(45, 100%, 60%, 0.2);
  line-height: 1;
}

/* Headline */
.headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--foreground);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* Supporting Text */
.subtext {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 450px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--background);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 20px hsla(45, 100%, 60%, 0.3),
    0 0 40px hsla(45, 100%, 60%, 0.15);
  animation: pulse-glow 3s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 8px 30px hsla(45, 100%, 60%, 0.5),
    0 0 60px hsla(45, 100%, 60%, 0.25);
}

.cta-button:active {
  transform: translateY(-1px) scale(0.98);
}

.rocket-icon {
  width: 1.5em;
  height: 1.5em;
  transition: transform 0.3s ease;
}

.cta-button:hover .rocket-icon {
  transform: translateX(3px) translateY(-3px);
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 4px 20px hsla(45, 100%, 60%, 0.3),
      0 0 40px hsla(45, 100%, 60%, 0.15);
  }
  50% {
    box-shadow: 
      0 6px 25px hsla(45, 100%, 60%, 0.45),
      0 0 50px hsla(45, 100%, 60%, 0.25);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.06;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.05);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .landing-container {
    padding: 1.5rem;
  }
  
  .cta-button {
    padding: 0.875rem 2rem;
  }
  
  .glow-orb {
    filter: blur(60px);
  }
  
  .orb-1 {
    top: 5%;
    left: -15%;
  }
  
  .orb-2 {
    bottom: 10%;
    right: -15%;
  }
}

@media (max-width: 480px) {
  .logo {
    margin-bottom: 0.75rem;
  }
  
  .headline {
    margin-bottom: 0.75rem;
  }
  
  .subtext {
    margin-bottom: 2rem;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .glow-orb,
  .cta-button {
    animation: none;
  }
  
  .content-wrapper {
    animation: none;
  }
  
  .cta-button:hover {
    transform: none;
  }
}
