@font-face {
  font-family: "JDH-font";
  src: url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f8f1e9;
  color: #113f5c;
  font-family: "JDH-font", Helvetica, sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #c1d1d3;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3,
p {
  text-align: left;
  padding: 10px 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  padding-top: 20px;
}

h3 {
  font-size: 1.8rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.5em;
}

ul {
  list-style: none;
}

main li {
  font-size: 1.2rem;
  line-height: 1.5em;
}

.content {
  max-width: 80rem;
  margin: 0 auto;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-img {
  width: 746px;
  margin-bottom: 32px;
}

.home-paragraph {
  text-align: center;
  max-width: 50rem;
}

.omgeving {
  width: 100%;
}

.beschikbaarheid,
.contact {
  max-width: 50rem;
}
.beschikbaarheid p,
.contact p {
  text-align: center;
}

.beschikbaarheid-ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.beschikbaarheid-ul li {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  padding-top: 1rem;
}
form h1 {
  max-width: 100%;
  text-align: center;
}
form label {
  font-size: 1.4rem;
  padding-top: 1rem;
}
form input,
form textarea {
  border: 1px solid #113f5c;
  margin: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  border-radius: 10px;
  width: 100%;
}
form input {
  margin-bottom: 0;
}
form textarea {
  overflow: auto;
  resize: none;
}
form button {
  background-color: #113f5c;
  color: #f8f1e9;
  border-radius: 8px;
  border-radius: 8px;
  border: none;
  font-size: 1.4rem;
  padding: 1.5rem 3rem;
  margin-top: 1rem;
  width: auto;
  cursor: pointer;
}
form button:visited {
  color: #113f5c;
}
form button:hover {
  text-decoration: underline;
}
form button:active {
  background-color: #e5e5e5;
  color: #f8f1e9;
}
form button:focus {
  text-decoration: underline;
}

.image-grid-photos {
  display: grid;
  margin: 20px auto 20px auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.image-grid-photos .grid-card {
  height: 350px;
  max-width: 100%;
}

.image-grid-omgeving {
  display: grid;
  margin: 20px auto 20px auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.image-grid-omgeving .grid-card {
  height: 350px;
  max-width: 100%;
}

.image-grid-rooms-2 {
  display: grid;
  margin: 20px auto 20px auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.image-grid-rooms-2 .grid-card {
  height: 350px;
  max-width: 100%;
}

.image-grid-rooms-3 {
  display: grid;
  margin: 20px auto 20px auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  width: 100%;
}
.image-grid-rooms-3 .grid-card {
  height: 350px;
  max-width: 100%;
}

.zoom {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.aanraders {
  margin-bottom: 15px;
}

.reference {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .content {
    padding: 0 3rem;
  }
  .home .home-img {
    margin: 0;
    width: 100%;
    padding-bottom: 3.2rem;
  }
}
@media screen and (max-width: 670px) {
  .image-grid-rooms-3,
  .image-grid-omgeving {
    display: grid;
    margin: 20px auto 20px auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
  .image-grid-photos {
    display: grid;
    margin: 20px auto 20px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .content {
    padding: 0 1.5rem;
  }
  .home .home-img {
    margin: 0;
    width: 100%;
    padding-bottom: 3.2rem;
  }
  .image-grid-rooms-2,
  .image-grid-photos {
    display: grid;
    margin: 20px auto 20px auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }
}
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  max-width: 1280px;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
}
header .logo {
  height: 78px;
  width: auto;
  margin: 2%;
}
header .header-mobile {
  display: none;
}
header ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header ul li {
  margin: auto 1.5rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 1280px) {
  header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 1rem 3rem;
  }
  header .logo {
    height: 60px;
  }
}
@media screen and (max-width: 670px) {
  header {
    padding: 1rem 3rem;
    position: relative;
  }
  header .header-mobile {
    display: block;
  }
  header .header-mobile img {
    height: 2rem;
  }
  header .header-mobile #mobile-bars {
    display: block;
  }
  header .header-mobile #mobile-xmark {
    display: none;
  }
  header nav {
    display: none;
    position: absolute;
    z-index: 9999;
    background-color: #f8f1e9;
    width: 100vw;
    bottom: -270%;
    left: 0;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
  }
  header nav ul li {
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 1rem 1.5rem;
  }
}
footer {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 1.25rem;
  margin-top: 6rem;
}
footer .footer-link {
  font-size: 1.2rem;
  text-align: left;
}
footer .footer-item {
  justify-self: center;
}
footer .footer-image {
  height: 67px;
}
footer .footer-paragraph {
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 1280px) {
  footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 5rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 670px) {
  footer {
    grid-template-columns: 1fr;
  }
  footer .footer-item {
    grid-row: 1/2;
    margin-bottom: 1rem;
  }
  footer .footer-link,
  footer .footer-item,
  footer .footer-paragraph {
    justify-self: center;
  }
}
@media screen and (max-width: 480px) {
  footer {
    margin-top: 5rem;
    padding: 0 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */