/* === Reset & base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background-color: #5C899D;
  color: #FFFCEF;
  font-family: 'Neuton', serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem 4rem;
}

/* === Kaart / container === */
.kaart {
  width: 100%;
  max-width: 640px;
}

/* === Label "Uitdrukking van de dag" === */
.label {
  font-family: 'Neuton', serif;
  font-weight: 300;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFCEF;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

/* === Datum === */
.datum {
  font-family: 'Neuton', serif;
  font-weight: 400;
  font-size: 1rem;
  color: #FFFCEF;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* === Quote-icoon === */
.quote-icoon {
  font-size: 2rem;
  color: #FFFCEF;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.quote-icoon--rechts {
  text-align: right;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* === Uitdrukking (h1) === */
.uitdrukking {
  font-family: 'Schoolbell', cursive;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 400;
  color: #FFFCEF;
  line-height: 1.2;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Scheidslijn === */
.scheidslijn {
  border: none;
  border-top: 1px solid rgba(255, 252, 239, 0.3);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* === Betekenis === */
.betekenis {
  font-family: 'Neuton', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: #FFFCEF;
  margin-bottom: 1.5rem;
}

/* === Herkomst === */
.herkomst {
  font-family: 'Neuton', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #FFFCEF;
  opacity: 0.88;
  margin-bottom: 2rem;
}

/* === Acties === */
.acties {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* === Historie-link === */
.historie-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Neuton', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #FFFCEF;
  text-decoration: none;
  opacity: 0.7;
}
.historie-link:hover { opacity: 1; text-decoration: underline; }

/* === Kopieerknop === */
.kopieer-knop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Neuton', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5C899D;
  background-color: #FFFCEF;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.kopieer-knop:hover {
  opacity: 0.9;
}

.kopieer-knop:active {
  transform: scale(0.97);
}

.kopieer-knop.gekopieerd {
  opacity: 0.7;
}

/* === Bron / footer === */
.bron {
  font-family: 'Neuton', serif;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.7;
}

.bron a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFCEF;
  text-decoration: none;
}

.bron a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* === Responsive: kleine schermen === */
@media (max-width: 375px) {
  body {
    padding: 1.5rem 1rem 3rem;
  }

  .uitdrukking {
    font-size: 1.6rem;
  }

  .betekenis {
    font-size: 1.05rem;
  }
}
