/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fullscreen background */
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;

  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Fade-in voor achtergrond */
  animation: bgFadeIn 1200ms ease-out forwards;
  opacity: 0;
}

/* Midden uitlijnen */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content fade-in (iets later dan background) */
.content {
  text-align: center;
  color: #ffffff;

  opacity: 0;
  transform: translateY(8px);
  animation: contentFadeIn 900ms ease-out 300ms forwards;
}

/* Logo schaalbaar */
.logo {
  width: min(260px, 60vw);
  height: auto;
  margin-bottom: 18px;
}

/* Tekst */
.title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  font-weight: 300;
  text-transform: uppercase;
}

/* Animaties */
@keyframes bgFadeIn {
  to { opacity: 1; }
}

@keyframes contentFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optioneel: betere rendering op sommige schermen */
@media (prefers-reduced-motion: reduce) {
  body, .content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}