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

/* Ensure body fills viewport */
body {
  min-height: 100vh;
}

/* Offset for sticky header on anchor scroll */
section[id] {
  scroll-margin-top: 4.5rem;
}

/* Subtle entrance animation for cookie banner */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fixed.bottom-0 > div > div {
  animation: slideUp 0.4s ease-out;
}
