.hover-interactive-button,
.hover-interactive-card {
  transition: all 0.3s ease-in-out !important;
}

.hover-interactive-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
}

.hover-interactive-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
}

.nav-link {
  color: #584235;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fc7d00;
}

.nav-link.is-active {
  border-bottom-color: #fc7d00;
  font-weight: 700;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.animate-pulse-ring {
  position: relative;
}

.animate-pulse-ring::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FB8500;
  border-radius: 9999px;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #fffaf7;
  color: #301400;
  overflow-x: clip;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(151, 72, 0, 0.2);
}

.text-shadow-strong {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.rounded-24px {
  border-radius: 24px;
}

.rounded-32px {
  border-radius: 32px;
}

.bento-zoom-container:hover .bento-bg-img {
  transform: scale(1.05);
}

.bento-bg-img {
  transition: transform 0.7s ease-out;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
