/* 
--- 01 TYPOGRAPHY

- Font size system (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Bitter", serif;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

/* REUSABLE */

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.2rem;
}

.hidden {
  display: none !important;
  transition: all 1s;
}

.hidden-2 {
  display: none !important;
}

/* .grid:not(:last-child) {
  margin-bottom: 9.6rem;
} */

.grid--2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn (from cta-section) */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Alwways put transition on the original */
  transition: all 0.3s;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #333;
  color: #fff;

  color: #ffd8a8;
  /* color: #ffe8cc; */
  box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #ffd8a8;
  /* box-shadow: inset 0 0 0 3px #ffe8cc; */
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fff;
  background-color: #ffd8a8;
  color: #333;
  /* Box-shadow to put a border inside */
  box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #ffd8a8;
}

.btn-container {
  display: flex;
  justify-content: center;
  padding: 4.8rem 0 0 0;
}

.line-break::before {
  content: "\a";
  white-space: pre-wrap;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.section-huur {
  background-color: #333;
  height: fit-content;
  padding: 4.8rem 4.8rem 4.8rem 4.8rem;
}

.section-huur-header-content {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.05;
  color: #ddd;
  letter-spacing: -0.25px;
}

.viool-huur {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
  background-color: #fff;
}

.viool-huur-title {
  font-size: 2.4rem;
  color: #555;
  font-weight: 600;
  margin: 1.8rem;
  text-align: center;
}
