@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Inter:wght@500;700&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #fefcf9;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1F1F1F;
}

.japandi-hero {
  background-color: #eae3dc;
  min-height: 100vh;
  padding: 4rem 1rem;
}

.bg-soft-peach {
  background-color: #f5e7df;
}

.bg-beige {
  background-color: #d9cfc1;
}

.card {
  background-color: #fffefc;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* Sticky Back Button */
.sticky-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  background-color: #eae3dc;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.sticky-btn:hover {
  background-color: #d9cfc1;
  cursor: pointer;
}