* {
  box-sizing: border-box;
}

html {
  font-family: Arial, sans-serif;
  font-size: 15pt;
  background: black;
  color: beige;
  text-align: left;
  padding: 15px;
}

body {
  margin: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 20pt;
  text-align: center;
}

a {
  text-decoration: none;
  color: orange;
}

.alink {
  text-decoration: none;
  color: orange;
}

.img {
  text-align: center;
}

section {
  float: left;
  padding: 16px;
}

footer {
  float: left;
}

.article {
  width: 25%;
  float: left;
  background-color: gray;
}

.main {
  width: 75%;
  float: left;
}

table,
th,
td {
  width: 100%;
  background-color: dimgray;
  border: 1px solid orange;
  border-collapse: collapse;
  padding: 15px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

li {
  float: left;
  width: 160px;
}

li a {
  display: block;
  color: orange;
  text-align: center;
  padding: 46px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111;
}

.button {
  background: darkolivegreen;
}

.dropbtn {
  background-color: #d9cca0;
  color: rgb(222, 65, 7);
  padding: 6px;
  font-size: 6px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-current {
  position: absolute;
  background-color: #959191;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

.dropdown-content a,
.dropdown-current a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover,
.dropdown-current a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #aa8747;
}

[class*="col-"] {
  width: 100%;
  float: left;
  padding: 15px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 1060px) {
  #primary {
    width: 67%;
  }

  #secondary {
    width: 30%;
    margin-left: 3%;
  }
}

@media screen and (max-width: 768px) {
  #primary,
  #secondary {
    width: 100%;
    margin: 0;
    border: none;
  }
}

@media only screen and (min-width: 768px) {
  .col-1 { width: 8.33%; }
  .col-2 { width: 16.66%; }
  .col-3 { width: 25%; }
  .col-4 { width: 33.33%; }
  .col-5 { width: 41.66%; }
  .col-6 { width: 50%; }
  .col-7 { width: 58.33%; }
  .col-8 { width: 66.66%; }
  .col-9 { width: 75%; }
  .col-10 { width: 83.33%; }
  .col-11 { width: 91.66%; }
  .col-12 { width: 100%; }
}

/* Google Maps */
.map-responsive {
  position: relative;
  margin: 20px auto;   /* centreert en beperkt de breedte */
  max-width: 700px;    /* hard plafond */
  aspect-ratio: 4 / 3; /* bewaakt verhouding */
  overflow: hidden;
}

.map-responsive iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
}

/* HelloAsso */
#haWidget {
  width: 100%;
  min-height: 750px;
  border: none;
  display: block;
  margin-top: 20px;
}

/* Gallery */
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: calc(25% - 20px);
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}