@font-face {
  font-family: 'Alegreya';
  src: url('../fonts/Alegreya.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Wondercraft';
  src: url('../fonts/Wondercraft-font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  transition: background-color 0.3s ease,
              color 0.3s ease;
}

/* Algemene reset */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #faf8f2, #f1ece3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gold {
  color: #b79669;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #b79669;
  margin: 12px auto 24px;
  border-radius: 2px;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}