:root {
--text-small: 1rem;
--text-medium: 1.3rem;
--text-large: 1.6rem;
--headline-small: 1.3rem;
--headline-medium: 2rem;
--headline-large: 2.4rem;
--strokewidth: 2px;
--shadowblur: 1px;
--shift-taupe: #ca9caf;
--shift-deepred: #cc0033;
--shift-salmon: #ffc3a5;
--shift-magenta: #ff007f;
--shift-orangered: #ff0000;
--shift-lightochre: #cb5616;
--shift-yellow: #ffcc00;
--shift-olive: #595c36;
--shift-stoneblue: #005763;
--shift-darkblue: #1e2143;
--shift-purple: #7a3e9d;
--shift-lavender: #aa8cff;
--shift-darkred: #7c1324;
--text-color: #1e2143;
--background-color: #1e2143;
--scrollbar-height: 0.5rem;
--border-radius: 0.5rem;
--text-stroke-thin: .1rem;
--text-stroke-normal: .2rem;
--text-stroke-thick: .4rem;
}

/* TYPEFACES */

@font-face {
  font-family: "authentic";
  src:
    url("./cssassets/AUTHENTICSans-Condensed-150.woff") format("woff");
}

@font-face {
  font-family: "adelphe";
  src:
    url("./cssassets/Adelphe-GerminalBoldItalic.woff") format("woff");
}

@font-face {
  font-family: "anthony";
  src:
    url("./cssassets/Anthony.woff") format("woff");
}

@font-face {
  font-family: "banana";
  src:
    url("./cssassets/Banana-Outline-Regular.woff") format("woff");
}

@font-face {
  font-family: "dindong";
  src:
    url("./cssassets/DINdong.woff") format("woff");
}

@font-face {
  font-family: "courgette";
  src:
    url("./cssassets/Courgette-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "cirruscumulus";
  src:
    url("./cssassets/Courgette-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "nudles";
  src:
    url("./cssassets/Nudles-Bold.woff") format("woff");
}

@font-face {
  font-family: "euripides";
  src:
    url("./cssassets/Euripides-SemiBold_web.woff") format("woff");
}

@font-face {
  font-family: "kottaOne";
  src:
    url("./cssassets/KottaOne-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "fredokaOne";
  src:
    url("./cssassets/FredokaOne-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "astloch";
  src:
    url("./cssassets/Astloch-Bold.ttf") format("ttf");
}

/* RESETS */

* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  margin-block-end: 0;
  margin-block-start: 0;
}

button {
  all: unset
}

ol, ul {
  list-style: none;
}

details > summary { 
  list-style: none;
  cursor: pointer;
} 

details > summary::-webkit-details-marker { 
  display: none; 
}

/* GENERAL STYLING */ 

html, body {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'authentic';
  background-color: var(--shift-lavender);
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  width: auto;
  /* background-image: url('./imgmissing.png'); */
}

h1, h2, h3, h4, h5 {
  padding: 1rem 1rem;
  color: var(--text-color)
}

h3 {
  padding-top: 0;
}

p {
  margin-block-start: .3rem;
  margin-block-end: .3rem;
  color: var(--text-color);
  font-size: var(--text-medium);
}

/* GLOBAL SCROLLBAR STYLE */

.styled-scrollbars {
  --scrollbar-foreground: var(--shift-orangered);
  --scrollbar-background: transparent;
  scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}
.styled-scrollbars::-webkit-scrollbar {
  width: var(--scrollbar-height); /* Mostly for vertical scrollbars */
  height: var(--scrollbar-height); /* Mostly for horizontal scrollbars */
}
.styled-scrollbars::-webkit-scrollbar-thumb { /* Foreground */
  background: var(--scrollbar-foreground);
  border-radius: 1px;
}
.styled-scrollbars::-webkit-scrollbar-track { /* Background */
  background: var(--scrollbar-background);
  border-radius: 1px;
}

/* UTILITY CLASSES ------------------- */

.hide {
  display: none !important;
}

.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  height: fit-content;
}

.link-inactive {
  color: rgba(120, 120, 120, 0.5);
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}



.underline {
  text-decoration: underline;
}

.underline-thick {
  text-decoration-thickness: var(--text-stroke-thick);
  text-decoration: underline;
  text-underline-offset: .5rem;
}

.inlineshading {
  text-decoration: underline;
  text-decoration-thickness: 2rem;
  text-decoration-color: var(--shift-magenta);
  text-underline-offset: -1.2rem;
  text-decoration-skip-ink: none;
}

.padding-left {
  padding-left: 1rem;
}

.padding-bottom {
  padding-bottom: 1rem;
}

.mail-dialog {
  display: none;
}

.authenticsans {
  font-family: 'authentic'
}

/* SPECIFIC STYLING ------------------- */

.verffabriek-placeholder {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* HEADER / NAVIGATION ------------------- */

nav {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.navlist {
  padding: .5rem .5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  z-index: 2;
  font-weight: bold;
  flex-wrap: wrap;
  width: 100%;
  position: fixed;
  font-size: var(--text-medium);
  transition: transform 500ms;
  pointer-events: none;
}

.navlist > li {
  width: fit-content;
  font-size: var(--headline-medium);
}
.navlist > span {
  height: fit-content;
}
.navlist > a {
  color: blue;
  background-color: transparent;
}

.navlist > button {
  color: var(--shift-stoneblue);
  width: fit-content;
  border-radius: 2%; 
  cursor: pointer;
  transition: all 500ms;
  height: fit-content;
  flex-shrink: 0;
  text-decoration: underline;
  text-underline-offset: .5rem;
  text-decoration-thickness: var(--text-stroke-thick);
  pointer-events: all;
   -webkit-text-stroke-color: var(--shift-magenta);
  -webkit-text-stroke-width: .5rem;
  paint-order: stroke fill;
}

.navlist > * {
  /* background-color: var(--shift-magenta); */
  color: var(--shift-magenta);
  transition: all 300ms;
} 

.navlist > a {
  pointer-events: all;
} 

.manifesto-container {
  padding-top: calc(var(--navigation-top-lowerbound) + .5rem);
  padding-bottom: calc(var(--navigation-bottom-upperbound) + 0.5rem);
  background-color: var(--shift-lavender);
}

.navlist > button:hover {
  -webkit-text-stroke-width: 1rem;
} 

.navlist > span {
  -webkit-text-stroke-color: var(--shift-stoneblue);
  -webkit-text-stroke-width: var(--text-stroke-thick);
  paint-order: stroke fill;
}

.menuButtonActive {
  -webkit-text-stroke-color: var(--shift-orangered) !important;
}

/* FRONTPAGE ------------------- */

#frontpage {
  width: 100%;
  height: 100%;
  position: relative;
}

.frontpage-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.frontpage-headline {
  position: absolute;
  font-family: 'banana';
  width: 100%;
  text-align: center;
  bottom: 2rem;
  color: var(--shift-orangered);
  -webkit-text-stroke-color: var(--shift-stoneblue);
  -webkit-text-stroke-width: var(--text-stroke-thick);
  paint-order: stroke fill;
  font-size: var(--headline-large);
  padding: .3rem;
  line-height: 2rem;
  z-index: 10;
}
/* CALENDAR ------------------- */

#calendar {
  height: 100%;
  width: 100%;
    overflow: hidden;

}

.calendar-scroll-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: var(--shift-taupe);
  /* transform: rotateZ(1deg); */
  gap: .2rem;
  padding: .2rem;
}

.calendar-card {
  /* flex-grow: 1; */
  width: 40dvw;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: auto;
  border-radius: 3%;
  background-color: var(--shift-purple);
  border-radius: 3%;
  padding-top: var(--navigation-top-lowerbound);
  padding-bottom: var(--navigation-bottom-upperbound);
}
.calendar-card:last-child {
  border-bottom: none;
}

.calendar-card[open] > summary {
  height: fit-content;
}

.calendar-dateline {
  width: 100%;
  height: fit-content;
  background-color: var(--shift-taupe);
  font-size: var(--headline-large);
}

.calendar-card[open] .calendar-dateline  {
  background-color: var(--shift-taupe);}


.calendar-card > summary {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  border-radius: 3%;
}

.calendar-card > summary > h2 {
  width: 100%;
  height: fit-content;
  flex-grow: 1;
}

.calendar-card > img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.calendar-titlecard {
  height: 100%;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3%;
  flex-direction: column;

}

.calendar-title {
  font-family: attr(data-typeface), 'authentic';
  font-size: 5rem;
  padding: 0;
  margin: 1rem;
  width: 100%;
  color: var(--shift-magenta);
}

.calendar-title > span {
  display: inline-block;
  text-decoration: underline;
  text-decoration: underline;
  text-decoration-thickness: .3rem;
  text-decoration-color: var(--shift-magenta);
  text-underline-offset: .5rem;
  text-decoration-skip-ink: none;
}

.calendar-event-description {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  flex-grow: 1;
  padding: .5rem;
}

/* CONTENTHOUSE */

#content-house {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  flex-shrink: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

/* CALENDAR */

.clickable {
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* NEWS */

#news {
  display: none;
}

/* ABOUT */

#about {
  display: none;
}

/* VERFFABRIEK */

#verffabriek {
  height: 100%;
  width: 100%;
  position: relative;
}

#verffabriek > a {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--shift-lavender);
  font-size: var(--headline-medium);
  font-family: 'banana';
  -webkit-text-stroke-color: var(--shift-magenta);
  -webkit-text-stroke-width: var(--text-stroke-normal);
}

/* ARCHIVE */

#archive {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.archive-entry {
  position: relative;
  height: fit-content;
  min-height: 5rem;
}

.archive-entry_text-content {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: flex-start;
}

.archive-entry-main-headline {
  width: 50%;
  text-align: left;
  font-size: var(--headline-medium);
  line-height: 130%;
  display: inline;
  color: var(--shift-orangered);
  -webkit-text-stroke-color: var(--shift-darkblue);
  -webkit-text-stroke-width: var(--text-stroke-normal);
  paint-order: stroke fill; 
  padding-right: .5rem;
  font-family: attr(data-typeface), 'authentic';
}

.dark-blue {
  color: var(--shift-lavender);
}

#mobileMenuClose {
  margin: .5rem;
  -webkit-text-stroke-color: var(--shift-magenta);
}

#mobileMenuOpen {
  -webkit-text-stroke-color: var(--shift-magenta);
}

.archive-entry_headline-wrapper {
  width: 50%;
  z-index: 10;
  padding: 1rem;
}

.descriptiontoggle {
  font-size: var(--headline-medium);
  cursor: pointer;
  pointer-events: auto;
  display: inline;
  color: var(--shift-orangered);
  -webkit-text-stroke-color: var(--shift-magenta);
  -webkit-text-stroke-width: var(--text-stroke-normal);
  paint-order: stroke fill; 
  text-decoration: underline;
}

.descriptiontoggle[aria-expanded="true"] {
  color: var(--shift-darkblue)
}

.descriptiontoggle[aria-expanded="false"] {
  color: var(--shift-lavender)
}

.editorial {
  height: 100%;
  width: 100%;
  position: relative;
}

.showdescription {
  font-size: var(--text-medium);
  color: var(--shift-lavender);
  paint-order: stroke fill; 
  width: 100%;
  height: fit-content;
  align-self: flex-end;
  color: var(--shift-yellow);
  -webkit-text-stroke-color: var(--shift-orangered);
  -webkit-text-stroke-width: var(--text-stroke-thin);
  pointer-events: all;
  padding: 1rem;
}

.showdescription-container {
  z-index: 6;
  width: 50%;
  height: fit-content;
  max-height: 100%;
  /* background-color: rgba(200, 200, 200, 0.99); */
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 3%;
}

.showdescription > * {
    color: var(--shift-yellow);
    font-size: var(--text-medium);
    line-height: 130%;
}

.archive-entry_image-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  border-radius: var(--border-radius);
}

/* .hero-image-container {
  transition-property: height;
  transition-duration: 500ms;
  max-height: 100vh;
  min-height: 70vh;
  width: 100%;
} */

.heroimage {
  height: auto;
  width: auto;
  max-height: 100dvh;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.hero-placeholder {
  background-color: attr(data-backgroundcolor);
  min-height: 50dvh;
  width: 60dvw;
}


.gallery-image-container {
  width: fit-content;
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: calc(97dvh - var(--scrollbar-height));
  position: relative;
  z-index: 0;
  gap: .2rem;
}

.gallery-image-container > img {
  height: 100%;
  width: auto;
  border-radius: var(--border-radius);
}

.description-background {
  width: 50dvw;
  background-color: var(--shift-deepred);
  height: 100%;
}

/* FOOTER */

.footerbutton {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
}

#footer {
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: center;
  -webkit-text-stroke-color: var(--shift-darkblue);
  -webkit-text-stroke-width: 1rem;
  paint-order: stroke fill; 
  color: var(--shift-orangered);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: fit-content;
  height: fit-content;
  /* margin-bottom: var(--nav-height); */
  /* border-radius: 50%; */
  /* padding-bottom: 5rem; */
  z-index: 11;
  stroke-miterlimit: 5;
  paint-order: stroke fill;
}

#footer > * {
    font-size: var(--headline-medium) !important;
    color: var(--shift-orangered)
}

/* OVERRIDE UTILS */

.zindex2 {
  z-index: 2;
}


  .mobileonly {
    display: none;
  }


@media screen and (max-width: 900px) {
  .mobileonly {
    display: block;
  }

  .hide-on-mobile {
    display: none;
  }

#calendar {
  padding: 0 !important;
}


.gallery-image-container {
  height: calc(97dvh - 4rem);
}

.calendar-scroll-container {
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.calendar-card {
  width: 100%;
  min-height: 30dvh;
  height: fit-content;
}

.zindex2 {
  display: flex;
  flex-direction: column-reverse;
}

.description-background {
  display: none;
}

.showdescription {
  padding-top: 0;
}

.zindex2 .archive-entry_text-content {
  flex-direction: column;
  position: relative;
  background-color: var(--shift-deepred);
}

/* archive entries */
.archive-entry_text-content > * {
  width: 100%;
}

}