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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f7f4ee;
  color: #1a2a3a;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f7f4ee;
}
::-webkit-scrollbar-thumb {
  background: #c9a84c;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a88c3f;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Base Utility Classes for rich aesthetics */
.shadow-soft {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}
.shadow-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

.text-gradient {
  background: linear-gradient(90deg, #c9a84c, #e2c87c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
