@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #0A1A34;
  --color-secondary: #C7A66A;
  --color-bg: #F8F5EF;
  --color-text: #121212;
  --color-text-muted: #6B7280;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-editorial {
  font-family: 'Cormorant Garamond', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}

/* Custom Utilities and Premium Touches */
.gold-glow {
  text-shadow: 0 0 10px rgba(199, 166, 106, 0.3);
}

.gold-border {
  border-color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

/* Parallax and Hero special styles */
.hero-gradient {
  background: linear-gradient(180deg, rgba(10, 26, 52, 0.3) 0%, rgba(10, 26, 52, 0.85) 100%);
}

/* Interactive Configurator active states */
.option-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(199, 166, 106, 0.15);
}

.option-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 26, 52, 0.05);
}

.option-card.active {
  border-color: var(--color-secondary);
  background-color: rgba(199, 166, 106, 0.08);
}

/* Floating WhatsApp pulse */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(199, 166, 106, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(199, 166, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(199, 166, 106, 0);
  }
}

.whatsapp-btn {
  animation: pulse-gold 2s infinite;
}

/* Custom transition for quiz */
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
}

/* Custom hover effects for Masonry Grid */
.masonry-item {
  overflow: hidden;
  position: relative;
}

.masonry-item img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  background: linear-gradient(0deg, rgba(10, 26, 52, 0.8) 0%, rgba(10, 26, 52, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* Particle styling for Elixir Section */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
