@charset "UTF-8";
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../../../fonts/Raleway-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Bilo";
  src: url("../../../fonts/Bilo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.button {
  font-family: "Bilo", sans-serif;
  font-weight: 400;
  font-size: 19px;
  background-color: #E29E18;
  border-radius: 100px;
  color: white;
  padding: 12px 32px;
  display: inline-block;
  transition: 0.3s;
  border: 2px solid #E29E18;
}
.button:hover {
  background-color: transparent;
  transition: 0.3s;
  color: #E29E18;
  text-decoration: unset;
}
.button:hover svg {
  fill: #E29E18;
  transition: 0.3s;
}
.button svg {
  width: 16px;
  fill: white;
  margin-left: 10px;
  position: relative;
  top: 1px;
  transition: 0.3s;
}

.button_hover-active {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
  border-radius: 100px;
  color: #E29E18;
  padding: 12px 32px;
  display: inline-block;
  transition: 0.3s;
  border: 2px solid #E29E18;
  text-transform: uppercase;
}
.button_hover-active:hover {
  background-color: #E29E18;
  transition: 0.3s;
  color: white;
  text-decoration: unset;
}

/* Buitenste wrapper – max 1600px breed, gecentreerd */
.locations-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Elke locatiegroep (set van 2 kolommen) */
.location-group {
  display: flex;
  gap: 2rem;
}

/* Elke kolom – neemt 50% van de breedte op desktop */
.location-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Kaartje per locatie */
.location-card {
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: #F2F2F2;
}

.location-title {
  margin: 0 0 0.5rem;
  font-size: 32px;
}

.location-address span {
  font-size: 18px;
}

.location-address {
  font-style: normal;
  margin-bottom: 1rem;
}

.map-indicator iframe {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
}

@media (max-width: 999px) and (min-width: 600px) {
  .location-group {
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .location-group {
    flex-direction: column;
  }
  .route-link a {
    padding: 12px 18px !important;
    margin-top: 15px;
  }
  .location-title {
    font-size: 26px;
  }
  .locations-wrapper {
    padding-bottom: 4rem;
  }
}/*# sourceMappingURL=location.css.map */
/* Afbeelding bovenaan de locatiekaart */
.location-image {
  margin: 0 0 1.25rem;
}
.location-image .location-image-img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
/* 1200px -> 900px -> 600px: 440px hoog */
@media (max-width: 1200px) {
  .location-image .location-image-img {
    height: 440px;
  }
}
/* max 600px: 270px hoog */
@media (max-width: 600px) {
  .location-image .location-image-img {
    height: 270px;
  }
}
