/* Fix menu style */
#gkMenu,
#gkMenu ul li a,
#gkMenu ul li a span {
  background-color: orange !important;
  font-size: 16px !important;
  padding: 0.5em 1em !important;
  line-height: 1.4 !important;
  font-family: inherit !important;
  text-transform: none !important;
  background: none !important;
}

/* Limit homepage banner wrapper to site width */
.component__top {
  max-width: 1000px;
  margin: 0 auto !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box;
}

/* ✅ Force internal wrapper (module inside component__top) */
.component__top > div {
  max-width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box;
  display: block;
}

/* ✅ Force DJ Slider to stretch */
.djslider-loader,
#djslider139,
#slider-container139 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}

/* ✅ Ensure image also scales */
.djslider-in img {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove bottom spacing under banner */
.subpage.component__top::before {
  height: 0 !important;
}

/* Reset spacing globally */
.component,
.djslider-loader,
.djslider,
.slider-container,
.djslider-in,
.djslider-in li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box;
}

/* Load custom signature font */
@font-face {
  font-family: 'High Spirited';
  src: url('/templates/gk_portfolio/fonts/HighSpirited.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.signature-font {
  font-family: 'High Spirited', cursive;
}

@keyframes flipInWobble {
  0% {
    transform: perspective(800px) rotateX(-90deg);
    opacity: 0;
  }
  60% {
    transform: perspective(800px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(800px) rotateX(-5deg);
  }
  100% {
    transform: perspective(800px) rotateX(0deg);
  }
}

.custom-flip-wobble {
  opacity: 0;
  transform-origin: top;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.custom-flip-wobble.animate {
  animation: flipInWobble 1.2s ease-out forwards;
  opacity: 1;
  transform: perspective(800px) rotateX(0deg);
}

.subpage {
  padding: 0 !important;
}

.subpage.component__bottom {
    padding: 50px 47px;
    position: static;
}

.faq-container details {
  background: #f6f6f6 !important;
  border-radius: 14px !important;
  margin-bottom: 1.2em !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
  border: 1px solid #e0e0e0 !important;
  transition: box-shadow 0.18s, border-color 0.18s !important;
  overflow: hidden !important;
}

.faq-container details[open] {
  box-shadow: 0 4px 16px rgba(180,180,180,0.11) !important;
  border-color: #bdbdbd !important;
}

.faq-container details > summary {
  list-style: none !important;
  cursor: pointer !important;
  position: relative !important;
  padding: 1em 1.2em 1em 2.2em !important;
  font-size: 1.13em !important;
  font-weight: 500 !important;
  color: #5e5e5e !important;
  background: #f6f6f6 !important;
  border-radius: 14px !important;
  transition: background 0.18s !important;
  outline: none !important;
  user-select: none !important;
}
.faq-container details > summary:hover,
.faq-container details[open] > summary {
  background: #ececec !important;
}

.faq-container details > summary::-webkit-details-marker {
  display: none !important;
}

.faq-container details > summary:before {
  content: "›";
  position: absolute !important;
  left: 0.9em !important;
  top: 1.02em !important;
  font-size: 1.2em !important;
  font-weight: bold !important;
  color: #bdbdbd !important;
  transition: transform 0.22s cubic-bezier(.4,2,.4,1), color 0.18s !important;
}
.faq-container details[open] > summary:before {
  transform: rotate(90deg) !important;
  color: #8e8e8e !important;
}

.faq-container details > p,
.faq-container details > div {
  margin: 0 0 1.1em 0 !important;
  padding: 0 2.2em 1.3em 2.2em !important;
  color: #4b4b4b !important;
  font-size: 1em !important;
}

ul.sigFreeClassic {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Laat thumbnails op de volgende regel lopen als het niet past */
  padding: 0;
  margin: 0 auto;
}
ul.sigFreeClassic li.sigFreeThumb {
  float: none;       /* Haal float weg */
  margin: 10px;       /* Optioneel: marge tussen thumbnails */
}

.sigDownloadLink,
a[title="Download"],
a[download] {
    display: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.responsive-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* optioneel voor ruimte tussen kolommen */
}

.responsive-columns .column {
  flex: 1 1 45%; /* twee kolommen naast elkaar op desktop */
}

@media screen and (max-width: 768px) {
  .responsive-columns .column {
    flex: 1 1 100%; /* op mobiel: volledige breedte = onder elkaar */
  }
}

