/* Viewport-based scaling voor verschillende schermgroottes */
/* Mobile first - basis voor kleine schermen */
html {
  font-size: 62.5%; /* 1em = 10px */
}

/* large */
@media screen and (min-width: 768px) {
  html {
    font-size: 75%;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 80%;
  }
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: black;
  color: white;
  font-size: 1.7em;
}

.btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.tablet-and-larger {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }

  .tablet-and-larger {
    display: block;
  }
}

.background-person {
  height: 100vh;
  max-height: 90vh;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .background-person {
    max-height: 75vh;
  }
}

@media screen and (min-width: 1024px) {
  .background-person {
    max-height: 70vh;
  }
}

.container {
  padding: 0 0.8em;
}

.content {
  padding-bottom: 0.7em;
  margin-top: -41vh;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.content-top {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .content {
    max-width: 600px;
    margin-top: -20vh;
  }
}

@media screen and (min-width: 1024px) {
  .content {
    max-width: 450px;
    margin-top: -18vh;
  }
}

.logo {
  width: 40vw;
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .logo {
    max-width: 165px;
  }
}

.tagline {
  font-size: 0.9em;
  line-height: 1.3;
  margin-bottom: 1.2em;
  font-weight: 600;
}

.btn-booking {
  display: inline-block;
  background-color: #26912a;
  color: white;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.7em 2em;
  font-size: 0.9em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 1.2em;
  transition: background-color 0.3s ease;
}

.btn-booking:hover {
  background-color: #228225;
}

.socials {
  margin-top: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.socials a {
  height: 2em;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;

  /* TODO RESET CSS */
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
}

.socials a i {
  font-size: 1em;
}

.details {
  margin-top: 1em;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .details {
    max-width: 500px;
  }
}

.contact {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact i {
  color: #828282;
}

.contact address {
  color: #828282;
  font-size: 0.7em;
  line-height: 1;
  font-weight: 500;
  font-style: normal;
}

.opening-hours {
  margin-top: 0.3em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.opening-hours .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.7em;
  line-height: 1;
  font-weight: 400;
}
