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

:root {
  --color-gold-primary: #D4AF37;
  --color-gold-glow: #FFD86F;
  --color-bg-dark: #0A0A0A;
  --color-bg-card: #151515;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important; /* Force custom cursor */
}

/* Enable custom cursor for interactable elements too but with pointer pointer style */
a, button, select, input, textarea, [role="button"], .swiper-button-next, .swiper-button-prev, .faq-trigger {
  cursor: none !important;
}

body {
  background-color: var(--color-bg-dark);
  color: #ffffff;
  font-family: var(--font-poppins);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-montserrat);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37, #FFD86F);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD86F;
}

/* Glassmorphism Styles */
.glass-panel {
  background: rgba(21, 21, 21, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-panel-heavy {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
}

/* Gold Gradients */
.text-gold-gradient {
  background: linear-gradient(135deg, #FFD86F 0%, #D4AF37 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #FFD86F 0%, #D4AF37 50%, #AA7C11 100%);
}

.border-gold-gradient {
  border-image: linear-gradient(135deg, #FFD86F, #D4AF37, #AA7C11) 1;
}

/* Neon Glows */
.gold-glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gold-glow-hover:hover {
  box-shadow: 0 0 30px rgba(255, 216, 111, 0.5);
  border-color: rgba(255, 216, 111, 0.6);
  transform: translateY(-4px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold-glow);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Magnetic / hover states for cursor */
.custom-cursor-hover {
  width: 14px;
  height: 14px;
  background-color: #ffffff;
}

.custom-cursor-outline-hover {
  width: 60px;
  height: 60px;
  border-color: var(--color-gold-glow);
  background-color: rgba(212, 175, 55, 0.1);
}

/* Button Golden Shine Sweep */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
}

.btn-shine:hover::after {
  left: 120%;
  transition: all 0.8s ease-in-out;
}

/* Mouse Follow Spotlight Background */
.spotlight-bg {
  position: relative;
}

.spotlight-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.05), transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Card Glow border animation */
.animated-border-card {
  position: relative;
  border-radius: 12px;
  background: rgba(21, 21, 21, 0.8);
  overflow: hidden;
}

.animated-border-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, var(--color-gold-primary), transparent);
  animation: border-rotate 8s linear infinite;
  z-index: 0;
}

.animated-border-card-inner {
  position: relative;
  margin: 1px;
  background: #0A0A0A;
  border-radius: 11px;
  z-index: 1;
}

@keyframes border-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Image zoom & lift */
.image-zoom-container {
  overflow: hidden;
  border-radius: 12px;
}

.image-zoom-img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-zoom-container:hover .image-zoom-img {
  transform: scale(1.08);
}

/* Canvas/WebGL containers */
.webgl-container {
  pointer-events: none;
}

.webgl-interactive {
  pointer-events: auto;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold-primary) !important;
  width: 24px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease;
}

/* Timeline vertical & horizontal line glow */
.timeline-line-glow {
  box-shadow: 0 0 12px var(--color-gold-primary);
}

/* CSS grid mesh overlay */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
}

/* For infinite logo slide */
@keyframes infinite-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.animate-infinite-scroll {
  animation: infinite-scroll 25s linear infinite;
}

.animate-infinite-scroll:hover {
  animation-play-state: paused;
}

/* Gold dust custom canvas style */
#gold-dust-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
}
