/* ==========================================================================
   Imports
========================================================================== */
@import url('bootstrap.min.css');
@import url('fontawesome.css');

/* ==========================================================================
   Fonts
========================================================================== */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic.woff2') format('woff2'),
       url('../fonts/CenturyGothic.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DK Display Patrol';
  src: url('../fonts/DKDisplayPatrol-Regular.woff2') format('woff2'),
       url('../fonts/DKDisplayPatrol-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Base
========================================================================== */
:root {
  --radius: 16px;
  --green: #3c503d;
  --green-2: #3c503e;
  --blue: #384c67;
  --red: #a43725;
  --yellow: #ebc943;
  --btn-green: #b5c858;
  --btn-dark: #521831;
}

body {
  font-size: 15px;
  font-family: 'Century Gothic', sans-serif;
  line-height: 19px;
  font-weight: 100;
  color: var(--green);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: 'DK Display Patrol', sans-serif;
  font-size: 58px;
  font-weight: 700;
}

h2,
h3 {
  font-family: 'DK Display Patrol', sans-serif;
  font-weight: 700 !important;
  font-size: 31px !important;
  margin-bottom: 15px !important;
  letter-spacing: 1px;
}

h4 {
  font-size: 21px;
  font-family: 'DK Display Patrol', sans-serif;
  font-weight: 700;
  color: var(--green-2);
}

p { line-height: 28px; }

a {
  color: var(--green);
  text-decoration: none;
}
a:hover { text-decoration: none; }

strong { font-weight: 700; }

.rounded { border-radius: var(--radius) !important; }
iframe { border-radius: calc(var(--radius) - 1px); }

/* Helpers */
.bg-blue { background: var(--purple); }
.bg-white { background: #fff; }

.mt-15 { margin-top: 15px; }
.mt-30 { margin-top: 30px; }
.mb-15 { margin-bottom: 15px; }
.p-30 { padding: 30px; }
.pr-230 { padding-right: 230px; }
.py-15 { padding-top: 15px; padding-bottom: 15px; }

/* ==========================================================================
   Header
========================================================================== */
.hero {
  height: 80vh;
  color: #fff;
  background-size: cover;
  width: 100%;
  margin-top: 90px;
}

.hero h1 { margin-top: 0 !important; }

.hero-small { height: 30vh; display: flex; flex-direction: column; }
.hero-small h1 { margin-top: 20vh; }

/* ==========================================================================
   Navigation
========================================================================== */
.banner {
  z-index: 10000;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  padding: 0 30px;
}

.navbar-brand { width: 110px; position: absolute; }
.navbar-brand img { width: 110px; margin: 70px 30px 0; }

.navbar li { margin: 10px; position: relative; }
.navbar li.active a { color: var(--red); }

.navbar a { font-weight: 700; }
.navbar a:hover { opacity: .6; }

.navbar .dropdown-item:hover { background: none; }
.navbar .dropdown-toggle:after { display: none; }

.dropdown:hover > .dropdown-menu { display: block; }

.navbar .dropdown-menu {
  background: #fff;
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  box-shadow: 0 0 0 2px #fff, 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

.navbar .dropdown-menu li { width: 100%; display: inline-block; }

.navbar .dropdown-menu a {
  border-bottom: 1px solid #ddd;
  padding: 10px 20px 10px 0;
  width: 100%;
  display: block;
}

.navbar .dropdown-menu li:last-child a { border: 0; }

/* ==========================================================================
   Buttons / Forms
========================================================================== */
.btn,
.wp-block-button__link,
.search-form .search-submit,
.frm_button_submit {
  border-radius: var(--radius) !important;
  padding: 10px 30px !important;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 700 !important;
  color: #fff;
  border: 0 !important;
  transition: 0.3s;
  text-align: left;
}

.btn-primary,
.wp-block-button__link,
.frm_button_submit {
  background: var(--btn-green);
  color: #fff !important;
}

.wp-block-button__link:after,
.btn-primary:after,
.frm_button_submit:after {
  font-family: FontAwesome;
  content: "\f054";
  margin-left: 25px;
  font-size: 12px;
  color: #fff;
  padding: 2px 5px;
}

.btn-primary:hover,
.frm_button_submit:hover,
.wp-block-button__link:hover {
  color: #fff !important;
  background: var(--blue);
}

.frm_button_submit { padding: 10px 30px !important; width: 100% !important; }

.btn-default,
.btn-secondary,
.comment-form input[type="submit"],
.search-form .search-submit {
  background: var(--btn-dark);
  color: #fff !important;
}

.btn-default:hover { background: #1a3155; color: #fff; }

input { border-radius: 30px !important; }

.frm_style_formidable-stijlen.with_frm_style .frm_submit button { margin: 0; }
.frm_style_formidable-stijlen.with_frm_style .form-field { margin-bottom: 10px; }

/* ==========================================================================
   Content lists
========================================================================== */
.content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 28px;
}
.content ul li { padding-left: 35px; margin-bottom: 10px; }

.content li:before {
  font-family: FontAwesome;
  content: "\f054";
  margin: 0 12px 0 -30px;
  font-size: 12px;
  color: #fff;
  border-radius: 30px;
  padding: 2px 5px;
}

.navigation li:before,
.navigation .nav-links { display: none; }

/* ==========================================================================
   Layout helpers
========================================================================== */
.main {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* ==========================================================================
   Blocks / Items
========================================================================== */
.block { padding: 90px 0; }

.block-news {
  background: var(--red);
  padding: 30px;
  transform: rotate(  3deg);
  color: #fff;
}
.block-news a { color: #fff; }

.item,
.item-row,
.item-news {
  transition: transform .15s;
  background: #fff;
  border-radius: calc(var(--radius) - 1px);
  margin-bottom: 30px;
}

.items-news > div:nth-child(odd) { transform: rotate(-3deg); }
.items-news > div:nth-child(even) { transform: rotate(3deg); }

.item p { color: #000; }
.item .item-content { padding: 20px 20px 30px 0; }

.item-agenda { border-bottom: 1px solid #ddd; }
.item-agenda-date {
  text-align: center;
  float: left;
  background: var(--yellow);
  color: #fff;
  padding: 15px;
  border-radius: var(--radius);
  display: inline-block;
  margin: 0 30px 0 0;
}
.item-agenda-date span { display: block; clear: both; }
.item-agenda-date span.day { font-size: 31px; margin: 10px 0 15px; font-weight: 700; }

.item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px !important;
  height: 50px;
}

.item:hover { transform: scale(.95); }

.item-row:hover { outline: 3px dashed #3d8b61; }

.item-news-image {
  border-top-right-radius: calc(var(--radius) - 1px);
  border-top-left-radius: calc(var(--radius) - 1px);
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.item-news { border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.3); }

.bg-glass {
  background: var(--green-2);
  border-radius: var(--radius);
  padding: 60px 30px;
  transform: rotate(-3deg);
  margin-top: 30vh;
}

/* ==========================================================================
   Footer
========================================================================== */
footer { padding: 90px 0; background: var(--green-2); }
footer a { color: #fff; }

footer .logo { float: left; margin-top: 15px; }
footer .logo img { width: 150px; }
footer .logo a:last-child img { width: 100px; margin-left: 30px; }

footer .copyright {
  font-size: 12px;
  margin-top: 30px;
  color: #fff;
  padding-top: 15px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  font-size: 15px;
}

footer ul a { text-decoration: none; }

footer ul li {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-left: 15px;
  font-weight: 700;
}

footer ul li li {
  display: block;
  text-align: left;
  margin-left: 0;
  font-weight: 300;
}

/* Gutenberg media text */
.wp-block-media-text .wp-block-media-text__content { padding: 0 60px 0 0; }
.wp-block-media-text__media img,
.wp-block-media-text__media video { height: 100%; }

/* ==========================================================================
   Responsive
========================================================================== */
@media (min-width: 1200px) {
  .container { width: 1140px; max-width: 100%; }
}

@media screen and (min-width: 1020px) {
  .navbar-toggler { display: none; }
  .navbar-nav { display: block; float: right; margin-top: 10px; }
  .navbar-nav li { display: inline-block; }
  .collapse { display: block !important; }
}

@media screen and (max-width: 720px) {
  h1 { font-size: 30px; }
  p { font-size: 15px; }
  h2, h3 { font-size: 20px; margin-bottom: 0; }

  .p-5 { padding: 2rem !important; }
  .pr-230 { padding: 0; }

  .hero { margin-top: 60px; }

  .banner { height: 60px; }

  .banner .navbar-brand { height: 90px; position: fixed; margin-top: 105px; }
  .banner .navbar-brand img { width: 70px; margin: 0; }

  .banner .navbar-toggler {
    top: 10px;
    right: 15px;
    font-size: 30px;
    position: fixed;
    color: var(--green);
    border: 0;
  }

  .banner .navbar-collapse {
    background: var(--green) !important;
    border: 0;
    padding: 15px;
    top: 60px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
    overflow-y: auto;
  }

  .banner .navbar-collapse li { width: 100%; }
  .banner .navbar-collapse li:last-child a { border: 0; }

  .banner .navbar-collapse a {
    color: #fff !important;
    border-bottom: 1px solid #fff;
    width: 95%;
    display: block;
  }

  .banner .navbar-collapse a:after { display: none; }
  .banner .navbar-collapse .btn-menu { margin-top: 15px; margin-left: 0; padding-left: 0; }
  .banner .navbar-collapse .btn-menu .nav-link { text-align: center; }

  .banner .collapsing { transition: height 0s ease; }

  .nav-sidebar { margin: 0; }
  .wrap { margin-top: 0 !important; }
  .navbar { padding: 0; }

  .btn { padding: 5px 15px !important; }

  .block { padding: 30px 0 !important; }

  .bg-glass { padding: 15px; margin: 25vh 30px 0; }

  .item .item-content { padding: 15px; }
  .item .item-image { border-top-right-radius: calc(var(--radius) - 1px); border-bottom-left-radius: 0; }

  footer { margin: 0; padding: 30px 0; }
  footer .logo img { margin-bottom: 30px !important; }
  footer ul { margin: 15px auto; }
}