:root {
  /* Zachte pasteltinten */
  --rose: #fdeae7;
  --lavender: #ecebf7;
  --mint: #e7f2ec;
  --ink: #5f5d74;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: linear-gradient(160deg, var(--rose) 0%, var(--lavender) 50%, var(--mint) 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.center {
  padding: 2rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.foto {
  display: block;
  margin: 1.75rem auto 0;
  max-width: min(70vw, 340px);
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(95, 93, 116, 0.18);
}

.reserveringen {
  margin-top: 1.25rem;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  letter-spacing: 0.03em;
}

.reserveringen a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reserveringen a:hover {
  opacity: 0.8;
}