@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Custom CSS for AI LPs Workshop Landing Page */
:root {
  --font-sans: "Noto Sans JP", "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Montserrat", "Space Grotesk", sans-serif;
  
  --color-gold-50: #fbfef2;
  --color-gold-100: #f9f5d7;
  --color-gold-200: #f2e1a3;
  --color-gold-300: #ebd269;
  --color-gold-400: #f2ca50; 
  --color-gold-500: #d4af37; 
  --color-gold-600: #b8860b; 
  --color-gold-700: #8a6508;
  --color-gold-800: #5c4305;
  --color-gold-900: #2e2102;
  
  --color-luxury-bg: #06070a;
  --color-luxury-surface: #0e111a;
  --color-luxury-card: #131726;
  --color-luxury-border: rgba(212, 175, 55, 0.15);
}

/* Custom scrollbar and smooth scroll */
html {
  scroll-behavior: smooth;
  background-color: #06070a;
}

::selection {
  background-color: #f2ca50;
  color: #000;
}

body {
  color: #f3f4f6;
  font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
  overflow-x: hidden;
  background-color: #06070a;
}

/* Custom smooth transitions */
.transition-luxury {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shimmer gold gradient effect */
.bg-gold-gradient {
  background: linear-gradient(135deg, #f2ca50 0%, #d4af37 50%, #b8860b 100%) !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #f2ca50 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Interactive Accordion Panel style */
.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out;
  opacity: 0;
}

.faq-answer-container.open {
  max-height: 500px;
  opacity: 1;
}

/* Interactive Scroll Enter Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Backdrop blur styling */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Button hover scales */
.btn-hover-scale:hover {
  transform: scale(1.03);
}
.btn-hover-scale:active {
  transform: scale(0.97);
}
