@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;800;900&display=swap');

:root {
  --color-black: #0a0a0c;
  --color-midnight: #15151e;
  --color-orange: #ff5722;
  --color-orange-glow: rgba(255, 87, 34, 0.4);
  --color-yellow: #ffc107;
  --color-purple: #9c27b0;
  --color-purple-glow: rgba(156, 39, 176, 0.3);
  --color-white: #ffffff;
  --color-gray: #e0e0e0;
  --color-dark-gray: #2d2d3a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--color-purple), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--color-dark-gray);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Animations */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px var(--color-orange-glow); }
  50% { box-shadow: 0 0 30px var(--color-orange-glow), 0 0 10px var(--color-yellow); }
  100% { box-shadow: 0 0 15px var(--color-orange-glow); }
}

@keyframes floatWave {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* Float Up Down Animation */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.3; }
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}

@keyframes pulseHeartbeat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  25% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
  75% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass-panel {
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-purple));
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--color-purple-glow);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.section-padding {
  padding: 100px 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s duration;
  background-color: transparent;
  padding: 24px 0;
}

.navbar.scrolled {
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
}

.mobile-menu-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-container.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .desktop-nav { display: none !important; }
}
@media (min-width: 993px) {
  .mobile-toggle { display: none !important; }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-slide-right:hover {
  transform: translateX(10px);
}
.hover-scale:hover {
  transform: scale(1.02) translateY(-10px);
}
.hover-scale-img:hover {
  transform: scale(1.05);
}

/* Add custom animations delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  h1 { font-size: 3rem !important; }
  h2 { font-size: 2.2rem !important; }
}
