html,
body {
  min-height: 100%;
}
/* Op een landscape-scherm zie je aan de randen een gekleurde, geanimeerde achtergrond.
   Op een smal (portrait) scherm is de achtergrond volledig wit. */

body {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  color: #1e1e1f !important;

  background: linear-gradient(-45deg, #d8cec9, #e4f9fd, #cec2bb, #615853);
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: gradientFlow 30s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Portrait-modus voor smartphone en tablet */
@media (orientation: portrait) {
  body {
    background: #ffffff;
    animation: none;
  }
}

/* Brand font */
.brand {
  display: inline-flex;
  gap: 0;
  font-size: 1em;
  line-height: 1;
}

.brand-rm,
.brand-aanden {
  font-family: "Teachers", sans-serif;
  font-size: 1.2em;
}

.brand-rm {
  font-weight: 500;
}
.brand-aanden {
  font-weight: 400;
}

/* Headings */
h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 525; /* normaal */
  font-size: 220%;
  color: #037a8a;
  text-align: center;
}

h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 125%; /* 50% larger */
  color: #037a8a;
}

h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 600; /* Bold */
  font-size: 125%; /* 50% larger */
  color: #3a3a3b;
  text-align: center;
}

h4 {
  font-family: "Mulish", sans-serif;
  font-weight: 600; /* Bold */
  font-size: 125%; /* 50% larger */
}

h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 600; /* Bold */
  font-size: 125%; /* 50% larger */
  color: #037a8a;
  text-align: left;
}

/* Normaal Teachers font */
@font-face {
  font-family: "Teachers";
  src: url("/fonts/Teachers-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* Teachers Medium font */
@font-face {
  font-family: "Teachers Medium";
  src: url("/fonts/Teachers-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* algemene tekst voorheen aerosolenText */
.main-text {
  font-family: "Mulish", sans-serif;
  max-width: 750px;
  font-size: large;
  color: #1e1e1f; /* geen !important nodig */
  background-color: #ffffff;
  text-align: justify;
}

/* opvallende tekst in groen */
.quicksand-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 600; /* Bold */
  max-width: 750px;
  font-size: large;
  color: #037a8a;
  background-color: white !important;
  text-align: justify;
}

/* voor het logo in de header en footer */
.main-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  width: 100%;
  border-radius: 0px;
}

/* voor afbeeldingen met een blauwe achtergrond */
.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
/* voor afbeeldingen met een witte achtergrond */
.center-image-gray {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  margin-top: 10px;
  width: 100%;
  border: 1px solid #3d3346;
  border-radius: 10px;
}

/* voor afbeeldingen met een groene border */
.center-image-green {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  margin-top: 10px;
  width: 100%;
  border: 3px solid #037a8a;
  border-radius: 10px;
}

/* voor weergave van Bluesky posts  */
.posts {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
}

/* voor de weergave van punten in een lijst */
ul.list-compact {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 1.2em !important;
  margin-left: 0 !important;
  margin-top: 0;
  margin-bottom: 1em;
}

ul.list-compact li {
  padding-left: 0 !important;
  margin-bottom: 0em;
  text-align: left !important;
}

.list-compact li::marker {
  color: #037a8a; /* groene bullet */
}

@media (max-width: 600px) {
  .list-compact {
    padding-left: 0.75rem;
  }
}

/* Normale en bezochte links */
a:link,
a:visited {
  color: #00338e;
  text-decoration: none;
  cursor: pointer;
}

/* Hover-effect voor links */
a:hover {
  color: #00a9d2;
}

/* Actieve status (optioneel) */
a:active {
  color: #00338e;
}

/* Button voor Log in en stuur e-mail */
.button {
  display: inline-block;
  margin-top: 12px;
  background-color: #037a8a;
  color: white !important;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 600; /* Bold */
  max-width: 750px;
  font-size: large;
}

.button:hover {
  color: white !important;
  background-color: #095779;
  border: 1px solid #ccc;
}

/* Styling voor de hoofdpagina-lijst */
.r-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.r-list li {
  padding: 12px 0;
}

.r-title {
  display: block;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  color: #037a8a;
}

.r-text {
  display: block;
  margin-top: 0px;
  color: #555;
  line-height: 1;
}

/* Styling voor de hoofdpagina-quote */
.r-quote blockquote {
  margin: 0 0 0.75rem 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-style: italic;
}

.r-quote figcaption {
  font-size: 0.9rem;
  color: #555;
}

.r-quote-name {
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  margin-right: 0.35rem;
}
