@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --primary: #0F172A;
  --accent: #D4AF37;
  --soft: #F8FAFC;
}

body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--soft);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.reveal-element {
  transition: all 0.8s ease-out;
}

.hero-gradient {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}