:root {
  --indent: 36px;
  --canvas: 50vh;
  --color-bg: #ffffff;
  --color-h1: #000;
  --color-h2: #000;
  --color-h3: #d2ac5c;
  --font-size: 16px;
  font-size: var(--font-size);
}
/*
@font-face {
    font-family: 'aittemia_seikageregular';
    src: url('fonts/aittemia-seikage.regular-webfont.woff2') format('woff2'),
         url('fonts/aittemia-seikage.regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'minidayregular';
    src: url('fonts/miniday-webfont.woff2') format('woff2'),
         url('fonts/miniday-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/
@font-face {
  font-family: "showclickregular";
  src: url("fonts/showclick-webfont.woff2") format("woff2"),
    url("fonts/showclick-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1 {
  font-family: "aittemia_seikageregular", sans-serif;
  font-family: "minidayregular";
  font-family: "showclickregular";
  font-size: 2.5rem;
  color: var(--color-h1);
}
h2 {
  font-family: "aittemia_seikageregular", sans-serif;
  font-family: "minidayregular";
  font-family: "showclickregular";
  font-size: 2rem;
  color: var(--color-h2);
}
h3 {
  font-family: "aittemia_seikageregular", sans-serif;
  font-family: "minidayregular";
  font-family: "showclickregular";
  font-size: 2rem;
  color: var(--color-h2);
}

/* Header & Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

/* Left Holder - Logo Branding */
.leftHolder {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 219px;
  height: 100dvh;
  overflow: visible;
  z-index: 9999;
}
.leftHolder-smaller {
  height: 30vh !important;
}

.poleTop {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 94px;
  width: 5px;
  background-color: var(--color-bg);
  z-index: 999;
}

.poleBottom {
  position: absolute;
  top: 94px;
  right: 0px;
  bottom: 0px;
  width: 5px;
  background-color: var(--color-bg);
  z-index: 888;
}

.poledance {
  position: absolute;
  top: 40px;
  left: 45px;
  width: 300px;
  z-index: 999999;
}

.poledance img {
  width: 100%;
  height: auto;
}

.marleen {
  position: absolute;
  top: 94px;
  left: 79px;
  width: 275px;
  z-index: 9999;
}

.marl:hover {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 0.75s;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-duration: 0.75s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  cursor: pointer;
}

.marleen img {
  width: 100%;
  height: auto;
}

.studio {
  position: absolute;
  top: 170px;
  left: 79px;
  width: 88px;
  z-index: 9999;
}

.studio img {
  width: 100%;
  height: auto;
}

.marleenhome {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-duration: 1.5s;
  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: 2;
  animation-duration: 1.5s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.marleentopdown {
  position: absolute;
  animation: topspin 3s ease-out 0s 1 normal;
}

.poledancehome {
  -webkit-animation: 3.5s ease 0s normal forwards 1 fadein;
  animation: 3.5s ease 0s normal forwards 1 fadein;
}

.studiohome {
  -webkit-animation: 4s ease 0s normal forwards 1 fadein;
  animation: 4s ease 0s normal forwards 1 fadein;
}

/* Logo Animations */
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(-360deg);
  }
}

@keyframes spinner {
  from {
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(-360deg);
    -ms-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
}

@-webkit-keyframes topspin {
  from {
    top: -138px;
    animation-timing-function: ease-out;
  }
  to {
    top: 94px;
    animation-timing-function: ease-out;
  }
}

@keyframes topspin {
  0% {
    top: -138px;
  }
  100% {
    top: 94px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.logo {
  z-index: 1002;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1002;
  width: 40px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-h3);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(13.5px) rotate(45deg);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-13.5px) rotate(-45deg);
  background-color: #fff;
}

/* Main Menu */
.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-h3);
  /*background-image: url('../img/gold.jpg');
  background-size: cover;*/
  padding: 100px 40px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: "showclickregular";
}


.main-menu.active {
  transform: translateY(0);
}

.main-menu span {
  display: block;
}

.main-menu a {
  color: var(--color-h1);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a.active {
  opacity: 0.7;
}

.main-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--color-h1);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
}

.language-switcher a {
  color: var(--color-h1);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.3s ease;
  min-width: 50px;
  text-align: center;
}

.language-switcher a:hover {
  background-color: var(--color-h1);
  color: var(--color-h3);
}

.language-switcher a.active {
  background-color: var(--color-h1);
  color: var(--color-h3);
}
strong{
  font-weight: bold;
}
/* Fullscreen Hero Section */
.fullscreen {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.coverme {
  position: relative;
}

.coverme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  filter: grayscale(100%);
}
.third-hero {
  height: 50dvh;
}

.hometop-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hometop-item h1 {
  color: #fff;
  font-size: 3.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  padding: 0 20px;
}

div.arrow-down {
  width: var(--indent);
  height: var(--indent);
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  bottom: calc(3 * var(--indent));
  transform: rotate(135deg);
  animation: bounce 2s infinite;
}

div.arrow-down::before {
  content: "";
  width: 100%;
  height: 100%;
  border-width: 3px 3px 0 0;
  border-style: solid;
  border-color: #fff;
  display: block;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(135deg);
  }
  40% {
    transform: translateY(-20px) rotate(135deg);
  }
  60% {
    transform: translateY(-10px) rotate(135deg);
  }
}

/* Calendar Hero Section */
.calendar-hero {
  padding: 80px;
  text-align: center;
  background: var(--color-h3);
  color: var(--color-h1);
}

.calendar-hero h1 {
  color: var(--color-h1);
  margin-bottom: 20px;
}

.calendar-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Calendar Grid */
.calendar-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 60px;
  align-items: start;
  overflow-x: hidden;
}

.calendar-item {
  position: relative;
  transition: transform 0.3s ease;
}

.calendar-item.left {
  margin-top: 0;
}

.calendar-item.right {
  margin-top: 50%;
}

.calendar-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.calendar-item:hover {
  transform: translateY(-10px);
}

.calendar-item-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 4:5 aspect ratio */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.calendar-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.calendar-item-image img:hover {
  filter: grayscale(0%);
}

.calendar-item:hover .calendar-item-image img {
  transform: scale(1.05);
}

.calendar-item-content h3 {
  font-size: 2rem;
  line-height: 1em;
  margin-bottom: 10px;
  color: var(--color-h2);
  transition: color 0.3s ease;
  font-family: "aittemia_seikageregular", sans-serif;
  font-family: "minidayregular";
  font-family: "showclickregular";
}

.calendar-item:hover .calendar-item-content h3 {
  color: var(--color-h3);
}

.calendar-item-meta {
  display: flex;
  gap: 15px;
  font-size: 0.95rem;
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.calendar-item-meta .date {
  font-weight: 600;
}

.calendar-item-meta .price {
  color: var(--color-h3);
  font-weight: 600;
}

/* View All Button */
.view-all-calendar {
  text-align: center;
  padding: 0 40px 80px;
}

.button-primary {
  display: inline-block;
  /*padding: 15px 40px;
  background-color: var(--color-h3);*/
  color: var(--color-h3);
  text-decoration: none;
  /*border-radius: 4px;*/
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.button-primary:hover {
  /*background-color: var(--color-h1);*/
  color: var(--color-h1);
  /*transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);*/
}

.crt-logo {
  display: none;
}
/* Footer */
footer {
  background-color: var(--color-h1);
  color: var(--color-bg);
  padding: 60px 40px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 100px;
}

footer h2 {
  color: var(--color-h3);
  margin: 0;
  padding-bottom: 4px;
  font-size: 1.5rem;
}

footer p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5em;
  margin-bottom: 2em;
  text-transform: uppercase;
}

footer a {
  color: var(--color-bg);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}
.footer-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer-menu {
  width: 100%;
  column-count: 3;
}

.footer-menu a {
  color: var(--color-bg);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.5em;
}

.footer-menu a:hover {
  opacity: 0.7;
}
.socials img {
  height: 22px;
  width: auto;
  margin-right: 15px;
}
.google {
  height: 25px;
  width: auto;
}

.language {
  float: right;
  text-align: right;
  padding-right: 136px;
}
.languagemobile {
  display: none;
}

.language a {
  color: var(--color-bg);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-left: 15px;
}

.language a:hover {
  color: var(--color-h3);
}

.language a.active {
  color: var(--color-h3);
}
/* Lessenrooster (Weekly Schedule) */
.smaller-hero {
  height: 30vh;
}

/* Agenda Item Detail */
.agenda-item-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.agenda-item-container h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--color-h2);
}

.agenda-item-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  padding: 30px;
  background-color: #f6eede;
  border-radius: 6px;
}

.agenda-item-meta .meta-item {
  display: flex;
  gap: 10px;
  font-size: 1.1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.agenda-item-meta .meta-item strong {
  color: var(--color-h3);
  min-width: 80px;
}

.agenda-item-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.agenda-item-content p {
  margin-bottom: 20px;
}

.agenda-item-content a {
  color: var(--color-h3);
  text-decoration: underline;
}

.agenda-item-content a:hover {
  opacity: 0.7;
}

.agenda-item-actions {
  margin-top: 60px;
}

/* Levelvereisten Accordion */
.levelvereisten-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.levelvereisten-container {
  width: 100%;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--color-h3);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 20px 25px 60px;
  text-align: left;
  cursor: pointer;
  font-size: 2rem;
  font-family: "minidayregular";
  font-family: "showclickregular";
  color: var(--color-h2);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.accordion-header:hover {
  background-color: #f6eede;
}

.accordion-header .arrow-icon {
  position: absolute;
  left: 20px;
  color: var(--color-h3);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-header .arrow-icon {
  transform: rotate(180deg);
}

.accordion-item:not(.active) .accordion-header .arrow-icon {
  transform: rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 30px 20px 30px 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
}

.accordion-content-inner p {
  margin-bottom: 15px;
}
.accordion-content-inner a {
  color: var(--color-h3);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer {
    padding-bottom: 40px;
  }
  header {
    padding: 15px 20px;
  }
  .leftHolder {
    transform: scale(0.7);
  transform-origin: top left;
  }
  .hamburger {
    top: 20px;
    right: 20px;
    z-index: 9999999;
  }

  .logo img {
    height: 50px;
  }

  .main-menu {
    padding: 80px 20px 30px;
  }

  .main-menu a {
    font-size: 1.2rem;
  }
  .poleBottom {
    display: none;
  }
  .main-menu {
    z-index: 999999;
  }
  .marleenhome {
    -webkit-animation: none;
    animation: none;
  }
  .marleentopdown {
    position: absolute;
    animation: none;
  }
  .poledancehome {
    -webkit-animation: none;
    animation: none;
  }
  .studiohome {
    -webkit-animation: none;
    animation: none;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-socials,
  .five-star {
    display: none;
  }
  .socials {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .calendar-hero {
    padding: 80px 20px 60px;
  }

  .calendar-hero h1 {
    font-size: 2rem;
  }

  .calendar-hero p {
    font-size: 1rem;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .calendar-item.left,
  .calendar-item.right {
    margin-top: 0;
  }

  .view-all-calendar {
    padding: 0 20px 60px;
  }
}

/* Instagram Feed */
.instagram-feed {
  padding: 80px 40px;
  background-color: var(--color-bg);
  text-align: center;
}

.instagram-header {
  margin-bottom: 40px;
}

.instagram-header h2 {
  margin-bottom: 15px;
}

.instagram-link {
  color: var(--color-h3);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.instagram-link:hover {
  opacity: 0.7;
}

.instagram-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.instagram-post {
  min-height: 400px;
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}

.instagram-media {
  margin: 0 !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

/* Contact Map Section */
.contact-map-section {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
  filter: grayscale(0%);
}
.mapboxgl-map {
  filter: brightness(0.85);
}

.contact-map-section:hover {
  opacity: 0.9;
}

#contact-map {
  width: 100%;
  height: 100%;
}

/* Contact Form */
.former {
  width: 100%;
  margin: 40px 0;
}

.singleField {
  font-size: 1rem;
  width: 100%;
  padding: 12px 2%;
  border: 1px solid var(--color-h3);
  color: var(--color-h1);
  border-radius: 5px;
  background-color: var(--color-bg);
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.singleField:focus {
  outline: none;
  border-color: var(--color-h1);
}

.multipleField {
  font-size: 1rem;
  line-height: 1.5em;
  width: 100%;
  min-height: 150px;
  padding: 12px 2%;
  border: 1px solid var(--color-h3);
  color: var(--color-h1);
  border-radius: 5px;
  background-color: var(--color-bg);
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.multipleField:focus {
  outline: none;
  border-color: var(--color-h1);
}

.submit {
  font-size: 1rem;
  width: 100%;
  padding: 15px 2%;
  border: none;
  color: var(--color-h1);
  border-radius: 5px;
  background-color: var(--color-h3);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: opacity 0.3s ease;
}

.submit:hover {
  opacity: 0.8;
}

.noshow {
  display: none;
}

#wassent {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-h3);
  padding: 40px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.five-star {
  position: absolute;
  left: 30px;
  bottom: 80px;
  z-index: 10;
}
.home-socials {
  position: absolute;
  right: 30px;
  bottom: 80px;
  width: 250px;
  text-align: right;
}
.home-socials img {
  height: 22px;
  width: auto;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .footer-menu {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .socials .language {
    display: none;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-menu {
    order: 1;
  }

  .socials {
    order: 3;
  }

  footer .language {
    order: 2;
    float: none;
    text-align: left;
    padding-right: 0;
    margin-top: 2px;
    margin-bottom: 20px;
  }
  footer .language a {
    margin-left: 0;
    margin-right: 15px;
  }
  .languagemobile {
    display: block;
  }
  .calendar-item.right {
    margin-top: 0px;
  }
}
/* Responsive Calendar Grid */
@media (max-width: 968px) {
  .calendar-grid {
    gap: 40px 30px;
  }

  .calendar-item.right {
    margin-top: 40%;
  }
}

@media (max-width: 968px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .instagram-feed {
    padding: 60px 20px;
  }

  .instagram-link {
    font-size: 1rem;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .instagram-post {
    min-height: 300px;
  }
  .calendar-item.right {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .levelvereisten-section {
    padding: 60px 20px;
  }

  .accordion-header {
    font-size: 1.2rem;
    padding: 20px 15px 20px 50px;
  }

  .accordion-header .arrow-icon {
    left: 15px;
  }

  .accordion-content-inner {
    padding: 0 15px 20px 50px;
    font-size: 1rem;
  }

  .agenda-item-detail {
    padding: 60px 20px;
  }

  .agenda-item-container h1 {
    font-size: 2rem;
  }

  .agenda-item-meta {
    padding: 20px;
  }

  .agenda-item-meta .meta-item {
    flex-direction: column;
    gap: 5px;
  }

  .agenda-item-content {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-map-section {
    height: 40vh;
  }

  .former {
    margin: 20px 0;
  }

  .singleField,
  .multipleField {
    font-size: 0.95rem;
  }
}

/* Newsletters List */
.newsletters-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.newsletter-item {
  border-bottom: 1px solid var(--color-h3);
  padding: 25px 20px;
  transition: background-color 0.3s ease;
}

.newsletter-item:hover {
  background-color: #f6eede;
}

.newsletter-header {
  margin-bottom: 15px;
}

.newsletter-title {
  font-size: 2rem;
  font-family: "minidayregular";
  font-family: "showclickregular";
  color: var(--color-h2);
  display: block;
  text-transform: lowercase;
}

.newsletter-title::first-letter {
  text-transform: uppercase;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.newsletter-date {
  font-size: 1rem;
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.newsletter-link {
  font-size: 1.1rem;
  color: var(--color-h3);
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.newsletter-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.5rem;
  }

  .newsletter-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.lessenrooster-header {
  padding: 150px 40px 80px;
  text-align: center;
  border-bottom: 1px solid var(--color-h3);
  color: var(--color-h3);
}

.lessenrooster-header h1 {
  color: var(--color-h3);
  margin-bottom: 20px;
}

.lessenrooster-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lessenrooster-schedule {
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  padding-top: 0;
  overflow-x: auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-width: 1200px;
}

.day-header {
  border-bottom: 1px solid var(--color-h3);
  padding: 20px 15px;
  text-align: center;
}

.day-header h2 {
  font-size: 1.6rem;
  color: var(--color-h3);
  margin: 0;
}

.day-column {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.schedule-day {
  margin-bottom: 60px;
}

.day-title {
  font-size: 2.5rem;
  color: var(--color-h2);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-h3);
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.lesson-card {
  background: var(--color-bg);
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--color-h3);
  background-color: #f6eede;
}
.notavailable {
  background-color: none !important;
}

.lesson-card:hover {
  /*transform: translateY(-5px);*/
}

.lesson-card.notavailable {
  background: none !important;
}

.lesson-card.notavailable .lesson-time .hour {
}

.lesson-time {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.lesson-time .hour {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-h3);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lesson-time .duration {
  font-size: 1rem;
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.lesson-info {
  min-height: 124px;
}
.lesson-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-h2);
  margin-bottom: 10px;
  font-family: "helvetica neue", Helvetica, Arial, sans-serif;
}
.lessenrooster-message{
  position:relative;
  padding: var(--indent);
  line-height: 1.6em;
}
.lessenrooster-message a {
  color: var(--color-h3);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.lesson-teacher {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 1rem;
  color: var(--color-h3);
  text-decoration: none;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: opacity 0.3s ease;
}

.read-more-btn:hover {
  opacity: 0.7;
}

.lesson-details {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.lesson-details.open {
  max-height: 500px;
  margin-top: 15px;
  opacity: 1;
}

.lesson-details p {
  margin: 10px 0;
}

.lesson-details a {
  color: var(--color-h3);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.lesson-details a:hover {
  opacity: 0.7;
}

.no-lessons {
  padding: 20px;
  text-align: center;
  color: #999;
  font-style: italic;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 480px) {
  .day-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .lessenrooster-schedule {
    padding: 60px 15px;
  }
}

@media (max-width: 1200px) {
  .schedule-grid {
    display: block;
    min-width: 100%;
  }
  .lessenrooster-schedule {
    padding-left: 0;
    padding-right: 0;
  }
  .lesson-card {
    width: 20vw;
    border-bottom: none;
  }

  .day-header {
    display: none;
  }

  .day-column {
    border-bottom: 1px solid var(--color-h3);
  }

  .day-column::before {
    content: attr(data-day);
    display: block;
    font-size: 1.6rem;
    color: var(--color-h3);
    font-family: "minidayregular";
    font-family: "showclickregular";
    text-align: center;
    padding: 20px 15px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .day-column {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
  }

  .day-column .no-lessons {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-menu {
    width: 100%;
    column-count: 2;
  }
  .day-column {
    grid-template-columns: 1fr;
  }
  .lessenrooster-header {
    padding: 120px 20px 60px;
  }

  .lessenrooster-header h1 {
    font-size: 2rem;
  }

  .lessenrooster-header p {
    font-size: 1rem;
  }

  .lessenrooster-schedule {
    padding: 0px;
  }

  .day-column::before {
    font-size: 2rem;
    border-bottom: 1px solid var(--color-h3);
  }

  .day-title {
    font-size: 2rem;
  }

  .lessons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lesson-card {
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid var(--color-h3);
  }
  .lesson-details {
    display: block !important;
    max-height: fit-content !important;
    overflow: hidden !important;
    opacity: 1 !important;
  }
  .read-more-btn {
    display: none;
  }
  .socials {
    margin-top: 40px;
  }
}
