:root{ /*bovenste element => <html> */
  --bg: #ffffff;
  --text: #222222;
  --heading: #8B5F0F;
  --accent: #F68D6A;
  --accent-strong: #B3715B;
  --header-bg: #F09F84;
  --header-bg-hover: #DC9F84;
  --muted-bg: #f9f9f9;
  --shadow: rgba(84,83,83,0.9);
  --focus: #ffdca8;
  --icon-color: var(--text);
  --icon-hover: var(--accent-strong);
  --icon-active: var(--heading);
  --icon-bg: rgba(179, 113, 91, 0.12);
  --icon-focus: rgba(179, 113, 91, 0.35);
}
*{ /*Alle elementen*/ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
}
article.read {
    opacity: 0.9;
}
.read-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.08rem 0.45rem;
    background: var(--icon-bg, #222);
    color: var(--icon-color, #fff);
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1;
    vertical-align: middle;
}
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--bg);
    color: var(--text);
    z-index: 9999;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
form {
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
}
h1 {
    color: var(--heading);
    margin: 20px 30px 10px 30px;
    text-align: center;
}
h2,h3 {
    color: var(--heading);
    margin-bottom: 10px;
    font-family: Faculty Glyphic;
}
p {
    color: var(--text);
}
#surename, #lastname, #birthdate, #messageContact, #comment, #email, #location, #rating, #messageShare {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 8px;
      box-sizing: border-box;
      background-color: #fff;
      color: var(--text);
      margin-top: 6px;
}
#surename:focus, #lastname:focus, #birthdate:focus, #messageContact:focus, #email:focus, #location:focus, #rating:focus {
      outline: 3px solid var(--icon-focus);
      outline-offset: 2px;
      background-color: #fff7ef;
}
form {
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
      max-width: 680px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
}
form label {
      display: block;
      margin-top: 10px;
      font-weight: 600;
      color: var(--heading);
}
form fieldset {
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 8px;
      padding: 14px 16px;
      background-color: #fff;
}
form legend {
      padding: 0 8px;
      font-weight: 700;
      color: var(--heading);
}
.radio-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-right: 1rem;
      margin-top: 10px;
}
.form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
}
input:focus {
    background-color: #fff3e8; 
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.banner {
    background: white;
    padding: 20px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}