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

/* Smooth Scrolling and Font Definition */
html {
  scroll-behavior: smooth;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: #0A0A0A;
}

body {
  background-color: #0A0A0A;
  color: #E5D3B3;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #D4C4A8;
  color: #000000;
}

.text-glow {
  text-shadow: 0 0 15px rgba(212, 196, 168, 0.25);
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(212, 196, 168, 0.25);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 196, 168, 0.45);
  }
}

.animate-whatsapp-pulse {
  animation: whatsapp-pulse 2s infinite ease-in-out;
}
