@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-midnight: #070a11;
  --color-midnight-light: #0d1422;
  --color-midnight-surface: rgba(13, 22, 38, 0.65);
  --color-gold: #d4af37;
  --color-gold-light: #f6e08d;
  --color-gold-dark: #997a15;
  --color-peach: #ffb38a;
  --color-teal: #14b8a6;
  --color-crimson: #e11d48;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-midnight);
  color: #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

::selection {
  background-color: rgba(212, 175, 55, 0.3);
  color: #fef08a;
}

/* Typography Classes */
.font-serif-title {
  font-family: 'Cinzel', serif;
}

.font-serif-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(13, 20, 35, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-panel-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(13, 20, 35, 0.7) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(246, 224, 141, 0.2);
}

.glass-panel-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(246, 224, 141, 0.3);
}

/* Gold Gradient Text & Effects */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff7d6 0%, #f6e08d 30%, #d4af37 70%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-glow {
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.text-peach-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #ffedd5 40%, #ffb38a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button & Accent Styling */
.btn-gold {
  background: linear-gradient(135deg, #f6e08d 0%, #d4af37 50%, #b8860b 100%);
  color: #080c14;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.75s ease;
}

.btn-gold:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45), 0 0 20px rgba(246, 224, 141, 0.4);
}

.btn-gold:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Floating Animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes floatGentle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.08);
  }
}

@keyframes fluidShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.animate-float-gentle {
  animation: floatGentle 5s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 8s ease-in-out infinite;
}

/* Ambient Background Lights */
.bg-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Phone Mockup 3D Frame */
.phone-mockup-wrap {
  perspective: 1200px;
}

.phone-mockup {
  transform: rotateY(-6deg) rotateX(4deg) rotateZ(0.5deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 25px 35px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.12);
}

.phone-mockup:hover {
  transform: rotateY(-1deg) rotateX(1deg) rotateZ(0deg) scale(1.015);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080c14;
}
::-webkit-scrollbar-thumb {
  background: #1f293d;
  border-radius: 4px;
  border: 2px solid #080c14;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}


