@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700');

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
  background: #2f2f2f;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.wrapper {
  max-width: 520px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo img {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.container {
  max-width: 480px;
}

h1 {
  font-size: 32px;
  margin: 0 0 20px;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.adres {
  margin: 20px 0;
  white-space: nowrap;
}

.contact-section {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-photo {
  flex-shrink: 0;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: #76712d;
}

.contact-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.visual {
  position: relative;
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  text-decoration: underline;
}

a.knop {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 4px;
  background: #76712d;
  font-size: 17px;
}

a.knop:hover {
  background: #76712d;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  background: #1f1f1f;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .visual {
    min-height: 300px;
  }
}

/* simpele mobiele tweak */
@media (max-width: 600px) {
  .wrapper {
    padding: 20px 30px 60px;
  }

  h1 {
    font-size: 26px;
  }

  .adres {
    white-space: normal;
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
  }

}
