/* --- INFO ---

The homepage has an overlay upon the pictures.
This can be adjusted in templates/home.css

*/

* {
  margin: 0;
  padding: 0;
}


@font-face {
    font-family: "Avenir Next LT Pro Ultra Light";
    src: url("22720711c1041438f0b800529084b6e3.eot");
    src: url("22720711c1041438f0b800529084b6e3.eot?#iefix")format("embedded-opentype"),
    url("22720711c1041438f0b800529084b6e3.woff2")format("woff2"),
    url("22720711c1041438f0b800529084b6e3.woff")format("woff"),
    url("22720711c1041438f0b800529084b6e3.ttf")format("truetype"),
    url("22720711c1041438f0b800529084b6e3.svg#Avenir Next LT Pro Ultra Light")format("svg");
}


:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: #333;
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  /* --font-family-sans: -apple-system, BlinkMacSystemFont, "Avenir Next LT Pro Ultra Light", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
  --font-family-sans: "Raleway", "Avenir Next LT Pro Ultra Light",  "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}
img {
  width: 100%;
}
body {
  padding: var(--padding);
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 6rem 1fr 4rem;
  flex-direction: column;
  color: var(--color-text);
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  /*grid-area: ;*/
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -1rem;
  /*margin-left: -57px !important; */
  margin-top: -1rem;
  margin-bottom: 3rem;
  margin: 0px 0px 30px 0px;
}

.logo {
	/*
	font-family: "Avenir Next LT Pro Ultra Light", 'Raleway', 'Segoe UI', sans-serif;
	font-family: 'Raleway', 'Segoe UI', sans-serif;
	*/
	font-weight: 400;
	font-size: 2rem;
	align-self: normal;
	display: flex;
}

/*
.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer; 
  grid-column: 1 / 2;	
}
*/

.logo svg:hover {
	fill: #777;
}

.logo a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-right: 1rem;
}

.logo svg {
	width: 3rem;
	height: 3rem;
}

.logo span {
	text-align: center;
	margin-left: 0.5rem;
	height: 48px;
}

.menu, .menu ul {
  display: flex;
  align-self: baseline;
}
.menu ul li {
  padding: 1rem;
  display: block;
  list-style: none;
}
.menu a[aria-current] {
  text-decoration: underline;
}


  
  .menu ul li a {
    display: inline-block;
    height: 100%;
    width: 100%;
  }
  
  
  .menu ul li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  background: #fff;
  display: none;
  z-index: 999;
  width: 14rem;
}

.menu ul li:hover > ul,
.menu ul li ul:hover {
  visibility: visible;
  display: block;
  opacity: 1;
}

.menu ul li ul li {
  clear: both;
  border-bottom: gray solid 1px;
}


.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
 
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h6 {
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

.text {
  line-height: 1.5em;
}

.text:has(blockquote){
    height:100%;
    display: flex;    
    flex-direction: column;
    justify-content: center;
}

.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.25em;
}
.text h2,
.h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  /* font-family: var(--font-family-mono); */
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.column:has(blockquote) {
  grid-column: 1 / -1 !important;
}
.text blockquote {
  border-left: none;
  padding: 3.5rem 2rem;
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.text blockquote .quote-icon {
  display: block;
  color: var(--color-black);
  opacity: 0.10;
  line-height: 1;
  margin-bottom: 1rem;
}
.text blockquote .quote-icon svg {
  width: 4rem;
  height: 4rem;
}
.text blockquote .quote-body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 50rem;
}
.text blockquote .quote-body p {
  margin-bottom: 0;
}
.text blockquote footer {
  font-family: var(--font-family-sans);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-top: 1.5rem;
}
.text blockquote footer .quote-dash {
  letter-spacing: 0.2em;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-light);
}

hr {
  border: 0;
  background: currentColor;
  height: 1px;
  
  margin: 3rem auto;
  color: #9c8362;
}

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

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
	font-size: 1rem;
	color: #777;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
  margin-top: 1rem;
	padding: 3rem 3rem 3rem 3rem;
}

.footer .social {
	display: flex;
	gap: 0.25rem;
}

.footer .social svg {
	opacity: 0.35;
	transition: opacity 0.3s;
}

.footer .social svg:hover {
	opacity: 1;
}

.footer a {
	text-decoration: none;
}

.footer a:hover, .footer a:focus {
	color: #555;
}

.heart {
	color:red;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 0.5rem;
}
.margin-l {
  margin-bottom: 1rem;
}
.margin-xl {
  margin-bottom: 2rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}

@media screen and (max-width: 60rem){
 .grid {
  --gutter: 1.8rem;
 }
 
 .grid li:has(article.note-excerpt){
     border-bottom: 1px solid #9c8362;
 }
 
 
 .grid li:has(article.note-excerpt):last-of-type{
     border-bottom: 0px;
 }
 
  .text h1,
.h1,
.intro {
  margin-top: 1rem;
}
.text h2,
.h2 {
  margin-top: 1rem;
}

h2.note-excerpt-title {
    margin-top:1.5rem;
}

}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }
  


.links{
    display: block !important;
}
}

/* ----------- pagina specifieke css --------------  */

.werken {line-height: 0rem;} 
/* weird issue where line-height is making the a and li slightly higher then the img */

.werken > ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
	grid-gap: 1rem;
	list-style: none; 
}

.werken > ul li {
	background-color: #fff;
	align-self: center;
	padding: 0.5rem;
}

.werken a {
	display: inline-block;
}

.werken img {
	width: 100%;
	max-width: 800px;
}

/*------------*/

.ws {
	display: flex;
	flex-wrap: wrap;
	flex-gap: 2rem;
	gap: 2rem;
}

.intro_ws {
	flex: 2 1 450px;
	font-size: 0.9em;
}

/*------------*/

section.intro_c {
	max-width: 800px;
}

section.info_c {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

section.info_c ul {
	box-sizing:content-box;
	flex: 1 1 auto;
	flex-wrap: wrap;
	list-style: none;
	background-color: #fff;
	padding: 1rem 1rem;
	align-items: baseline;
}

section.info_c li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 2rem;
	padding-right: 2rem;
}


section.info_c svg {
	width: 0.8rem;
	height: 0.8rem;
	margin-right: 0.6rem; 
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt-text {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}



/*
VANAF HIER TOEGEVOEGD DOOR BRAM 
*/

@media screen and (max-width: 1255px) {
  body {
    grid-template-rows: 10rem 1fr 4rem;
  }


  .header {
    padding: 0;
    /* border-bottom:0; */
    flex-wrap: nowrap;
    margin-left: 0 !important;
    border-bottom: none;
  }

  .logo {
    width: 40%;
    font-size: 1.2rem;
  }

  .social {
    padding: .5rem 0rem 0rem 0rem;
  }

  .logo a {
    justify-content: left;
  }

  .logo span {
    text-align: left;
  }

  .menu {
    display: table;
  }
  
  .menu ul {
    display: table;
    border-left: 1px solid black;
    padding-left: 10px;
  }

  .menu ul li {
    padding: .3rem 0 0 0;
    
  }
  
  .menu ul li ul {
  margin-top: 0rem;
  }
  
  .menu ul li ul li {
  border-bottom: 0px;
}
  .social a {
    padding: 0 .4rem 0 0;
  }

  .menu a[aria-current] {
    text-decoration: underline;
  }

  .home-grid figcaption {
    font-size: 1rem !important;
  }

  .footer {
    padding-left:0;
    padding-right: 0;
  }

}

.footer{
  padding-bottom: 70px;
}

.img img, .video iframe {
  border:2px solid white;
}

p{
    text-align: left;
}

.fancybox-thumbs__list a:before{
    border-color: gray !important;
}

.links{
    display: none;
position: absolute; 
z-index: 99999;
top: 0;
left: 0;
width: 300px;
height: 100%;
padding: 70px 15px 15px 50px;
}

.fancybox-button--zoom{
    display: none !important;
}

.fancybox-bg{
    background: #f9f4f4 !important;
    
}

code{
    font-size: 140% !important;
}

/* Quote Carousel */
.quote-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.quote-carousel-track {
  position: relative;
}

.quote-carousel .quote-carousel-slide {
  width: 100%;
  box-sizing: border-box;
  border-left: none;
  margin: 0;
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.quote-carousel .quote-carousel-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.quote-carousel-slide .quote-icon {
  display: block;
  color: var(--color-black);
  opacity: 0.10;
  line-height: 1;
  margin-bottom: 1rem;
}

.quote-carousel-slide .quote-icon svg {
  width: 4rem;
  height: 4rem;
}

.quote-carousel .quote-carousel-slide .quote-body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 50rem;
  text-align: center;
}

.quote-carousel-slide .quote-body p {
  margin-bottom: 0;
  text-align: center;
}

.quote-carousel-slide footer {
  font-family: var(--font-family-sans);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-top: 1.5rem;
}

.quote-carousel-slide footer .quote-dash {
  letter-spacing: 0.2em;
}

.quote-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.quote-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-light);
  border: 1px solid var(--color-grey);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-carousel-dot.is-active {
  background: var(--color-black);
  border-color: var(--color-black);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  z-index: 1001;
  cursor: pointer;
  align-self: center;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .header {
    align-items: center;
    margin-bottom: 1rem;
  }

  body {
    grid-template-rows: auto 1fr 4rem;
  }

  .menu {
    display: none !important;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    background: var(--color-background);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .menu.is-open {
    display: flex !important;
  }

  .menu ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    border-left: none !important;
    padding-left: 0 !important;
    padding-right: 0;
    margin: 0;
    width: 100%;
    gap: 0.25rem;
  }

  .menu ul li {
    padding: 0.6rem 0;
    text-align: center;
    width: 100%;
  }

  .menu ul li a {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }

  .menu .social {
    margin-top: 3rem;
    margin-bottom: 4rem;
    gap: 1.25rem;
    padding: 0;
  }

  .menu .social a {
    padding: 0;
  }

  .menu .social svg {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 1;
  }
}