@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --color-gold: #d7b661;
  --color-gold-hover: #c5a350;
  --color-navy: #1B2A4E;
  --color-navy-light: #2a3f75;
  --color-ice: #F8F9FA;
}

html {
  scroll-behavior: smooth;
}

@keyframes modal-pop {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-modal {
  animation: modal-pop 0.3s ease-out forwards;
}
