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

:root {
  --bg-warm: #F9F7F2;
  --ink-deep: #1A1C1E;
  --accent-gold: #C5A059;
  --accent-forest: #2D4A3E;
  --glass-white: rgba(255, 255, 255, 0.7);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-warm);
  color: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
}

.serif-heading {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.02em;
}

/* Sophisticated Card Style */
.premium-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(197, 160, 89, 0.2);
}

/* Glass Effect */
.glass-panel {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #E0DDD5;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Animations */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in {
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
