html {
  scroll-behavior: smooth; /* zorgt dat het scrollen vloeiend gaat */
}
body {
		background: #ffffff;
    font-family: 'Axiforma', serif;
    font-style: normal;
		font-weight: 300;
    overflow-x: hidden;
}


/*---------------------------------------
    Typography              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-family: 'Axiforma', serif;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.5px;
}

h1 {
    font-size: 62px;
    padding-bottom: 14px;
    margin-bottom: 0px;
}

h2 {
  font-size: 32px;
}

h2,h3 {
  padding-bottom: 6px;
}

h3 {
  font-size: 26px;
}

h4 {
  color: #666;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
}

p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0.2px;
}

.btn-success:focus {
  background-color: #000;
  border-color: transparent;
}


/*---------------------------------------
    General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #4d638c;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover, a:active, a:focus {
  color: #4d638c;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#about, 
#gallery,
#contact,
#blog, 
#blog-single-post {
  padding-top: 60px;
  padding-bottom: 80px;
}

.main-about,
.main-single-post,
.main-gallery,
.main-contact {
  height: 65vh;
}

.overlay {
  background: rgba(0,0,0,0.1 );
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
  overflow: hidden;
}


/*---------------------------------------
   NIEUWE MENUSFEST PRELOADER: SWOOSHING PLANK
-----------------------------------------*/

.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

/* --- DE PLANK CONTAINER (SWOOSH) --- */
.balk-container {
    position: relative;
    width: 420px;
    height: 140px;
    
    background-image: url('../images/balk.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Startpositie (wordt overschreven door animatie) */
    transform: translateX(-100vw) rotate(-5deg); 
    
    filter: drop-shadow(0px 15px 5px rgba(0,0,0,0.2));

    /* De Swoosh Animatie */
    animation: plankSwoosh 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Dit zorgt dat de letters netjes op de schuine plank staan */
.menus-word-loader {
    display: flex;
    gap: 2px;
}

/* --- DE LETTERS --- */
.m-letter {
    font-family: 'Axiforma', sans-serif;
    font-size: 42px;
    font-weight: 800;
    
    /* ZWARTE SCHADUW (zoals gevraagd) */
    text-shadow: 2px 2px 0px #000000, -1px -1px 0px #000000;
    
    display: inline-block;
    opacity: 0;
    animation-duration: 1.0s; /* Iets sneller vliegen */
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: forwards;
}

/* --- KLEUREN --- */
.m-letter:nth-child(-n+5) { color: #ed2729; } /* MENUS = Rood */
.m-letter:nth-child(n+6) { color: #1a979d; }  /* FEST = Cyaan */

/* --- ANIMATIES --- */

/* 1. De Plank komt van links het scherm in vliegen */
@keyframes plankSwoosh {
    0% { 
        opacity: 0;
        /* Start ver linksbuiten beeld, iets meer gedraaid voor effect */
        transform: translateX(-100vw) rotate(-15deg); 
    }
    80% {
        /* Hij schiet een heel klein beetje te ver door (bounce effect) */
        transform: translateX(10px) rotate(-5deg);
    }
    100% { 
        opacity: 1;
        /* Eindigt precies in het midden op -5 graden */
        transform: translateX(0) rotate(-5deg); 
    }
}

/* 2. De Letters (Hetzelfde, maar vliegen naar hun plek) */
@keyframes flyTopLeft {
    0% { opacity: 0; transform: translate(-250px, -250px) rotate(-45deg); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}
@keyframes flyBottomRight {
    0% { opacity: 0; transform: translate(250px, 250px) rotate(45deg); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}
@keyframes flyBottom {
    0% { opacity: 0; transform: translateY(300px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes flyTop {
    0% { opacity: 0; transform: translateY(-300px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes flyRight {
    0% { opacity: 0; transform: translateX(300px) rotate(90deg); }
    100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}

/* --- TIMING (DELAY) --- */
/* Ik heb overal +0.6s toegevoegd zodat de plank er eerst is! */

.l1 { animation-name: flyTopLeft;     animation-delay: 0.7s; } /* M */
.l2 { animation-name: flyBottomRight; animation-delay: 0.9s; } /* E */
.l3 { animation-name: flyBottom;      animation-delay: 0.8s; } /* N */
.l4 { animation-name: flyTop;         animation-delay: 1.0s; } /* U */
.l5 { animation-name: flyTopLeft;     animation-delay: 0.6s; } /* S */
.l6 { animation-name: flyRight;       animation-delay: 0.85s;} /* F */
.l7 { animation-name: flyBottom;      animation-delay: 0.95s;} /* E */
.l8 { animation-name: flyTopLeft;     animation-delay: 0.75s;} /* S */
.l9 { animation-name: flyBottomRight; animation-delay: 1.05s;} /* T */


/*---------------------------------------
    Main Navigation             
-----------------------------------------*/
.logo {
  height: 50px;   /* kleiner op mobiel */
  width: auto;
}

@media (max-width: 768px) {
  .logo {
    height: 40px;
    margin-left: 20px;
    margin-top: 5px;
  }
}

.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;              /* ruimte tussen knoppen */
  align-items: center;     /* midden */
  margin-top: 50px;
}

@media (min-width: 768px) {
  .nav-buttons {
    align-items: flex-end; /* rechts op grotere schermen */
    margin-right: 40px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .navbar-nav > li {
    margin-bottom: 8px; /* ruimte tussen knoppen */
  }
}
.navbar-default {
  background: rgba(0,0,0,0.0); /* of zwart */
  border: none; /* randje weghalen */
  position: absolute; /* zet hem bovenop de pagina */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* zodat hij bovenop alles ligt */
  margin: 0 !important;
  padding: 18px 0;
}

.navbar-default .navbar-brand {
  color: #000;
  font-family: 'Axiforma', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.navbar-default .navbar-nav li a {
    color: #777;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.05s ease-in-out;
    padding-right: 22px;
    padding-left: 22px;
}

.navbar-default .navbar-nav > li {
  margin-left: 10px;
  margin-right: 10px;
}

.navbar-default .navbar-nav > li a:hover {
    color: #000000 !important;
}


.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #606066;
    background-color: transparent;
}

.navbar-default .navbar-nav li a:hover,
 .navbar-default .navbar-nav .active > a {
    color: #000000;
  }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #000000;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    background: #000000;
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}



/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    position: relative;
    text-align: center;
}

.main-home {
  background: url('../images/home-bg.webp') no-repeat center center;
  background-size: cover;
  height: 100vh;
}

.main-about {
  background: url('../images/about-bg.webp') no-repeat center center;
  background-size: cover;
  height: 100vh;
}

.main-gallery {
  background: url('../images/gallery-bg.webp') no-repeat center center;
  background-size: cover;
  height: 100vh;
}

#home h4 {
  color: #000;
}

.button-1 {
    background-color:#25bdad;
    border: 0 solid #E5E7EB;
    box-sizing: border-box;
    color: #000000 !important;
    display: inline-block;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.75rem;
    padding: .75rem 1.65rem;
    position: relative;
    text-align: center;
    text-decoration: none #000000 solid;
    text-decoration-thickness: auto;
    width: fit-content;
    padding: 2.2rem 4.2rem;
    position: relative;
    cursor: pointer;
    transform: rotate(-3deg);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 0 auto;
}
.button-1:after {
    content: '';
    position: absolute;
    border: 1px solid #000000;
    bottom: 4px;
    left: 4px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
}
.button-1:hover:after {
    bottom: 2px;
    left: 2px;
}

/*---------------------------------------
    Bouncend pijltje             
-----------------------------------------*/
.contentDiv {
    position: relative;
}

@keyframes bouncing {
    0% {bottom: 0;}
    50% {bottom: 20px;}
    100% {bottom: 0;}
}

.arrow {
    animation: bouncing 1s infinite ease-in-out;
    bottom: 0;
    display: block;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}
/*---------------------------------------
   Ticket            
-----------------------------------------*/

@media (max-width: 768px) {
  .ticket-options {
    flex-direction: column;
    align-items: center;   /* centreert de items */
    justify-content: center;
  }

  .ticket {
    margin: 10px 0;        /* ruimte tussen kaarten */
    width: 90%;            /* ipv vaste 230px → schaalt mooi mee */
    max-width: 320px;      /* niet te breed op grotere telefoons */
  }
}

#about .col-md-6 {
  padding-top: 22px;
  padding-bottom: 32px;
}

#about .col-md-6 img {
  padding: 22px 0px 22px 22px;
}

#about .col-md-4 {
  padding-bottom: 32px;
}

#about .col-md-4 img {
  padding-top: 12px;
}

.ticket-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  align-items: center;
}


.ticket {
  background-color: #ffffff30;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 230px;
  display: flex;
  flex-direction: column;   /* zodat we de knop naar onder kunnen duwen */
  justify-content: space-between;
  text-align: center;
}
/*---------------------------------------
   Gallery section              
-----------------------------------------*/

#gallery span {
  display: block;
  padding-bottom: 32px;
}

#gallery .col-md-6 {
  padding-left: 0px;
  padding-right: 0px;
}

#gallery .gallery-thumb {
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  cursor: pointer;
  display: block;
  position: relative;
  top: 0px;
  transition: all 0.4s ease-in-out;
}

#gallery .gallery-thumb:hover {
  box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  top: -5px;
}

#gallery .gallery-thumb img {
  width: 100%;
}

#gallery .col-md-12 p {
  padding-top: 22px;
  text-align: center;
}

.gallery-thumb img {
  width: 100%;
  height: auto; /* voorkomt inzoomen */
  object-fit: contain; /* laat hele foto zien */
}
/*---------------------------------------
   Blog section              
-----------------------------------------*/

.blog-post-thumb {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 32px;
  padding-bottom: 62px;
  margin-bottom: 32px;
}

.blog-post-thumb:last-child {
  border-bottom: 0px;
  padding-bottom: 32px;
  margin-bottom: 0px;
}

.blog-post-image,
.blog-post-video {
  padding-top: 22px;
  padding-bottom: 22px;
  width: 100%;
}

#about img,
.blog-post-image img {
  border-radius: 1px;
}

.blog-post-title a {
  color: #222;
}

.blog-post-title a:hover {
  color: #1a979d;
}

.blog-post-format {
  padding-bottom: 22px;
}

.blog-post-format span {
  letter-spacing: 0.5px;
  padding-right: 12px;
}

.blog-post-format span a {
  color: #333;
}

.blog-post-format span img {
  display: inline-block;
  width: 42px;
  margin-right: 4px;
}

.blog-post-des blockquote {
  margin: 22px;
}

.blog-post-des .btn {
  border-radius: 100px;
  color: #777;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 28px;
  margin-top: 26px;
  transition: all 0.4s ease-in-out;
}

.blog-post-des .btn:hover {
  background: #1a979d;
  border-color: transparent;
  color: #ffffff;
}

.blog-author {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.blog-author .media img {
  display: inline-block;
  width: 90px;
  margin-right: 12px;
}

.blog-author .media a,
.blog-comment .media h3 {
  color: #444;
  font-size: 18px;
  letter-spacing: 1px;
}

.blog-comment {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 32px;
  margin-bottom: 42px;
}

.blog-comment .media:nth-child(2) {
  padding-top: 22px;
}

.blog-comment .media img {
  width: 82px;
  margin-right: 12px;
}

.blog-comment .media h3 {
  display: inline-block;
  padding-right: 14px;
}


.blog-comment-form h3 {
  padding-bottom: 18px;
}

#about .col-md-6, #about .col-md-4,
.blog-comment-form .col-md-4 {
  padding-left: 0px;
}

.blog-comment-form .form-control {
  box-shadow: none;
  border: 2px solid #f0f0f0;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.blog-comment-form .form-control:hover {
  border-color: #555;
}

.blog-comment-form input {
  height: 45px;
}

.blog-comment-form input[type="submit"] {
  background: #1a979d;
  border-radius: 100px;
  border: none;
  color: #ffffff;
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}

.blog-comment-form input[type="submit"]:hover {
  background: #333;
  border-color: transparent;
  color: #ffffff;
}

/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
    background: #000;
    color: #ffffff;
    padding: 80px 0px;
    position: relative;
}

footer .col-md-4 .fa {
  color: #ffffff;
  padding-right: 8px;
}

footer hr {
  border-color: #121212;
  margin-top: 62px;
  margin-bottom: 42px;
}

footer .footer-copyright {
  padding-top: 12px;
}



/* Back top */
.go-top {
  background-color: #ffffff;
  box-shadow: 1px 1.732px 12px 0px rgba( 0, 0, 0, .14 ), 1px 1.732px 3px 0px rgba( 0, 0, 0, .12 );
  transition : all 1s ease;
  bottom: 2em;
  right: 2em;
  color: #333;
  font-size: 24px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 100%;
}

.go-top:hover {
    background: #1a979d;
    color: #ffffff;
}



/*---------------------------------------
   Social icon             
-----------------------------------------*/

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    border: 2px solid #292929;
    color: #292929;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin: 22px 12px 10px 12px;
}

.social-icon li a:hover {
    border-color: #1a979d;
    color: #ed2729;
    transform: scale(1.1);
}



/*---------------------------------------
   Mobile Responsive         
-----------------------------------------*/

@media (max-width: 980px) {
  .main-about,  
  .main-gallery {
    height: 35vh;
  }
}


@media (max-width: 768px) {

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 26px;
  }

  #about .col-md-6 img {
    padding-left: 0px;
  }

  #blog-single-post .blog-single-post-image img {
    padding-bottom: 22px;
  }

  footer .col-md-4 {
    padding-top: 22px;
  }

}


@media (max-width: 650px) {

  h1 {
    font-size: 42px;
  }

  #about, #gallery,
  #blog {
    padding-top: 60px;
    padding-bottom: 60px;
  }

/* --- FIX VOOR MOBIELE WEERGAVE (IPHONE/ANDROID) --- */
@media (max-width: 768px) {

  /* 1. Schakel het parallax/fixed effect uit op mobiel */
  /* Dit voorkomt dat de foto enorm wordt ingezoomd */
  .parallax-section {
    background-attachment: scroll !important;
    background-position: center top !important;
  }

  /* 2. Zorg dat de secties de juiste hoogte hebben en de foto het scherm vult */
  .main-home,
  .main-about,
  .main-gallery {
    /* 'cover' zorgt dat het scherm gevuld is (geen witte randen), in plaats van 'contain' */
    background-size: cover !important;
    
    /* Zorg dat de sectie minimaal de hoogte van het scherm is */
    min-height: 100vh;       /* Voor oudere telefoons */
    min-height: 100dvh;      /* Voor moderne telefoons (rekent adresbalk mee) */
    height: auto !important; /* Laat de hoogte vrij ademen als er veel tekst is */
  }
}

@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Regular.woff2') format('woff2'),
       url('/fonts/Axiforma-Regular.woff') format('woff');
  font-display: swap;
}

/* --- MOBIELE FIX V9 (Met Pijltje Fix) --- */
@media screen and (max-width: 768px) {
    
    .main-home, 
    .main-about, 
    .main-gallery,
    .parallax-section {
        /* 1. STILSTAAN & GROOTTE */
        background-attachment: scroll !important;
        background-position: top center !important;
        background-size: cover !important;
        
        /* 2. VASTE HOOGTE (Tegen het zoomen) */
        min-height: 800px !important; 
        height: auto !important;
        
        /* 3. RESET MARGES */
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        position: relative; /* Nodig voor het pijltje */
    }

    /* 4. HET PIJLTJE TERUGHALEN */
    /* Dit forceert het pijltje om in beeld te blijven, ook al is de pagina langer */
    .arrow {
        position: absolute !important;
        bottom: auto !important; /* Maak de onderkant los */
        top: 80vh !important;    /* Zet hem op 80% van de KIJK-hoogte */
        left: 50% !important;
        transform: translateX(-50%) !important; /* Netjes in het midden */
    }
}