:root {
 /* --beige: #F0EFE8; */
 --blauw: #cfd0dd;
 --paars: #472F88;
 --geel: #FBFF54;
 --width: 2px;
 --minus: -20px;
}

body {
  background-color: var(--blauw);
}

/*///// TYPOGRAPHY //////*/
@font-face {
    font-family: 'till';
    src: url('../fonts/Till-Normal.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

* {
  font-family: 'till';
}

p, h2, li {
  font-weight: 100;
  font-size: clamp(1rem, 0.8459rem + 0.3215vw, 1.1875rem);
  line-height: 1.15;
  margin-top:0;
}

a {
  color: inherit;
  text-decoration: underline;
  font-weight: 100;
}

p a:hover {
  font-style: italic;
}

h1 {
  font-size: clamp(1.875rem, 1.6503rem + 0.6329vw, 2.125rem);
  font-weight: 100;
  line-height: 1.3;
}

h3, h3 a {
  font-family: 'ookotica-medium';
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 100;
  margin-bottom: 0;
}

.site-wrapper {
  max-width: 1200px;
  margin: auto;
  border-left:0rem solid var(--geel);
  border-right:0rem solid var(--geel);
}

.inner-wrapper {
  max-width: 900px;
  margin: auto;
  border-left:0px solid var(--geel);
  border-right: 0px solid var(--geel);
  padding-bottom: .6rem;
}

.content-wrapper {
  max-width: 750px;
  margin: auto;
}

#logo-wrapper {
  border-top: var(--width) solid var(--geel);
  border-bottom: var(--width) solid var(--geel);
  position: relative;
}

.inner-logo-wrapper {
  height: 100%;
  margin-bottom: .6rem;
  margin-top:.6rem;
  border-top: var(--width) solid var(--geel);
  border-bottom: var(--width) solid var(--geel);
}

#logo {
  background: var(--geel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: .6rem;
  margin-right: .6rem;
  margin-top: -.8rem;
  margin-bottom: -0.45rem;
  padding: .5rem 0;
}

#logo svg {
  width: 100vw;
  padding: 0 2rem;
}

@media only screen and (min-width: 865px) {
  #logo svg {
    max-width: 600px;
    padding: 0 5rem;
  }
}

.tagline {
  border-bottom: var(--width) solid var(--geel);
}

.tagline p {
  font-size: 1rem;
  text-align: center;
  padding: .5rem;
  color: var(--paars);
}

.tagline p span {
  font-size: 85%;
}

.inner.col-md-8, .inner.col-md-4 {
  padding: .3rem;
}

.col-md-8 .inner-content {
  margin: .2rem 0 0 .2rem;
  padding: .3rem;
  border: var(--width) solid var(--geel);
  height:100%;
  color: var(--paars) !important;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
}

.col-md-4 .inner-content {
  margin: .2rem .2rem 0 0;
  padding: .3rem;
  border: var(--width) solid var(--geel);
  height:95%;
  color: var(--paars) !important;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
}
.copyright {
  padding-left: 0.6rem !important;
  padding-right: 0.5rem !important;
  border-bottom: var(--width) solid var(--geel);
  margin-top: .5rem;
  background: var(--geel);
  color: var(--paars);
  padding:0;
}

.copyright a {
  font-size: clamp(1rem, 0.8459rem + 0.3215vw, 1.1875rem);
}

.copyright p {
  padding:0;
  margin-bottom: 0.2rem;
}

.artist-name, .names {
  font-weight: 100;
  font-size: clamp(1rem, 0.8459rem + 0.3215vw, 1.1875rem);
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  height:100% !important;
}

.artist-name:hover {
  /* font-style: italic; */
  text-decoration: underline;
}

.artist-name:after {
  content: '/';
  text-decoration: none;
}

.artist-name:last-child:after {
  display:none;
}

hr {
  border: 0;
  border-top: var(--width) solid var(--blauw);
  margin:0;
  padding:0;
}

/* START SHOWCASE */
.images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.grid-image {
  border: var(--width) solid var(--paars);
  background: var(--blauw);
}
.grid-image img {
  max-width:100%;
  display: block
}

.grid-image {
  position: relative;
  margin: .6rem;
}

.images a {
  position: relative;
}

.grid-image p {
  position: absolute;
  top:0;
  left:0;
  display:none;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--paars);
  /* background: var(--geel) */
}

.grid-image:hover p {
  display: block;
}

.grid-image:hover{
  /* z-index: 100; */
  /* background: var(--geel); */
-webkit-box-shadow: 0px 20px 0px 8px var(--geel);
-moz-box-shadow: 0px 20px 0px 8px var(--geel);
box-shadow: 0px 20px 0px 8px var(--geel);
}


.grid-image:hover img {
  opacity: .5;
}

.row-1 {
  margin-right: .7rem;
  padding-right: 2rem;
}

.row-2 {
  margin-top: -4rem;
  padding-left: 2rem;
}

.row-1 a:nth-child(1) {
  display:none;
}

.row-1 a:nth-child(2) {
  display:none;
}


.row-2 a:nth-child(3) {
  display: none;
}

.row-2 a:nth-child(4) {
  /* padding-bottom:2rem !important; */
  display: none;
}

.image-wrapper {
  border-bottom: var(--width) solid var(--geel);
  position: relative;
}

.border {
  border-bottom: var(--width) solid var(--geel);
  height: .6rem;
}

.showcase-lines {
  height: .6rem;
  border-bottom: var(--width) solid var(--geel);
  border-top: var(--width) solid var(--geel);
  position: absolute;
  bottom: 30%;
  width:100%;
}

/* END SHOWCASE */

@media only screen and (min-width: 865px) {

  .content-wrapper {
    border-left: var(--width) solid var(--geel);
    border-right: var(--width) solid var(--geel);
  }

  .images {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .row-1 a:nth-child(1) {
    display:block;
  }
  
  .row-1 a:nth-child(2) {
    display:block;
  }

  .row-2 a:nth-child(3) {
    display:block;
  }
  
  .row-2 a:nth-child(4) {
    display:block;
  }
  
}

@media only screen and (min-width: 1200px) {
  .site-wrapper {
    border-left:1.5rem solid var(--geel);
    border-right:1.5rem solid var(--geel);
  }

  .inner-wrapper {
    border-left:1rem solid var(--geel);
    border-right:1rem solid var(--geel);
  }
}

/* MAILCHIMP */
.modal {
  display: none;
}

.modal {
  background: var(--geel);
  width: 400px;
  padding: 3rem;
  position: absolute;
  top:50%;
  left: calc(50% - 200px);
  color: var(--paars);
}

.mc-field-group {
  display: inline-grid;
  margin-bottom: 1rem;
  width: 100%;
}

#mc-embedded-subscribe {
  all: unset !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.modal:focus-visible {
  outline: 0px
}