/* GENERAL */

* {
  padding: 0;
  margin: 0;
}

body {
  color: #555;
  background-color: #fff8c2;
  font-family: 'Exo', sans-serif;
  font-size: 110%;
  font-weight: 300;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

h1 {
  font-family: 'Great Vibes', sans-serif;
  font-size: 2.2em;
  font-weight: 400;
}

h2 {
  display: block;
  align-self: center;
  border-bottom: 2px solid #555;
  font-size: 2.6em;
  font-weight: 300;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

h3 {
  margin: 15px 0 10px 0;
}


/* HEADER */

header {
  height: 325px;
  background-color: #644E40;
  background-image: url(../images/header.jpg);
  background-size: 1200px auto;
  background-position: 50% 70%;
  background-repeat: no-repeat;
}

header.small {
  height: 325px;
  background-position: 50% 70%;
}

nav {
  display: flex;
  justify-content: space-between;
  color: #fff;
  height: 120px;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 75px;
  margin: 0 15px;
}

nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
}

nav ul li {
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 0;
  margin: 0 15px;
}

nav ul a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  outline: none;
}

nav ul a.active,
nav ul a:hover,
nav ul a:focus {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

nav ul a:hover,
nav ul a:focus {
  transition: all ease 0.2s;
}


/* CONTENT */

.content {
  display: flex;
  flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 50px 5px rgba(0, 0, 0, .1);
    padding: 40px 50px;
    /*margin-top: -100px;*/
    margin-bottom: 50px;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #555;
  text-decoration: none;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1px;
}

a:hover,
a:focus {
  color: #555;
  border-bottom: 1px solid #555;
}

.succes {
  color: #0a230c;
  background-color: #A5D6A7;
  border: 1px solid #0a230c;
  padding: 20px;
  margin-bottom: 20px;
}

.foutmelding {
  color: #751212;
  background-color: #EF9A9A;
  border: 1px solid #751212;
  padding: 20px;
  margin-bottom: 20px;
}

.succes a,
.foutmelding a {
  border-bottom: 1px solid #555;
}

.succes .halflings,
.foutmelding .halflings {
  font-size: 1.5em;
  margin: 0 15px 10px 0;
}

.small-text {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}

img {
  max-width: 100%;
}

.width-50 {
  width: 50%;
}

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

.color-green {
  color: green;
}

.color-red {
  color: red;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}


/* GALLERY */

#fotoalbums {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 25px 0;
}

#fotoalbums li {
  width: 18%;
  text-align: center;
  margin-right: 2%;
}

#fotoalbums li:last-child {
  margin-right: 0;
}

#fotoalbums a {
  border-bottom: none;
}


/* NEWS */

div.nieuwsbericht {
  padding-bottom: 25px;
  margin-bottom: 15px;
}

div.nieuwsbericht:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.bericht {
  margin: 15px 0;
}


/* FORM */

input,
textarea {
  width: 100%;
  color: #555;
  font-family: 'Exo', sans-serif;
  font-size: 100%;
  font-weight: 300;
  border: 1px solid #aaa;
  box-sizing: border-box;
  padding: 3px 5px;
  transition: all ease-in .2s;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  border: 1px solid #555;
  outline: none;
}

input[type="submit"],
a.button {
  width: auto;
  color: #eee;
  background-color: #555;
  border: 1px solid #555;
  padding: 3px 10px;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
a.button:hover,
a.button:focus {
  background-color: #666;
}


/* TABLE */

table {
  border-collapse: collapse;
}

table td,
table th {
  padding: 5px;
}

table.striped tr:nth-child(odd) td {
  background-color: #eee;
}


/* FOOTER */

footer {
  align-self: center;
  font-size: 0.8em;
  font-style: italic;
  border-top: 1px solid #eee;
  padding: 20px 50px 0 50px;
  margin-top: 20px;
}


/* RESPONSIVE */

@media screen and (max-width: 1300px) {
  .container {
    width: 90%;
  }
}

@media screen and (max-width: 1000px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
  }

  nav .logo {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }

  #fotoalbums li {
    width: 32%;
    margin-right: 1%;
  }
}
