/* Basislayout en typografie */

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gentium Book Plus", "Gentium Book Basic", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #222222;
  background-color: #ffffff;   /* <-- deze regel geeft het witte */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header en navigatie */

.site-header {
  padding: 28px 32px 16px 32px;
  text-align: center;
}

.site-title {
  font-family: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.site-nav {
  font-family: "Gentium Book Plus", Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.08em;
}

.site-nav a {
  margin: 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: #222222;
}

.site-nav a.current {
  border-bottom-color: #222222;
}

/* Hoofdinhoud */

.main {
  max-width: 820px;
  margin: 40px auto 60px auto;
  padding: 0 24px 0 24px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 18px 0;
}

h1 {
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  font-size: 26px;
  letter-spacing: 0.04em;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px 0;
}

ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

li {
  margin: 0 0 6px 0;
}

/* Tussentitels in lopende tekst */

strong.section-heading {
  display: block;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* Subnavigatie (Some Examples) */

.subnav {
  margin: 0 0 24px 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subnav a {
  margin-right: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.subnav a:hover {
  border-bottom-color: #222222;
}

/* Blokken voor voorbeelden */

.example-block {
  margin-bottom: 22px;
}

.example-block-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  margin-bottom: 4px;
}

.example-block-meta {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 6px;
}

/* Footer */

.site-footer {
  max-width: 820px;
  margin: 40px auto 40px auto;
  padding: 0 24px 20px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.site-footer p {
  margin-bottom: 10px;
}

/* Contactformulier */

.contact-intro {
  margin-bottom: 24px;
}

.contact-form {
  margin-top: 20px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #c9c0b3;
  border-radius: 3px;
  font-family: "Gentium Book Plus", Georgia, "Times New Roman", serif;
  font-size: 16px;
  background-color: #fbf8f2;
}

/* GROOT tekstvak voor de boodschap */

#message {
  min-height: 260px;
  padding: 12px 14px;
  font-size: 17px;
  line-height: 1.6;
  border-radius: 4px;
  resize: vertical;
}

.contact-form small {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 6px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.contact-submit button {
  padding: 8px 18px;
  border: 1px solid #222222;
  background-color: transparent;
  border-radius: 999px;
  font-family: "Gentium Book Plus", Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit button:hover {
  background-color: #222222;
  color: #f7f4ef;
}
