* {
  margin: 0;
  padding: 0;

  list-style: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
html body {
  background-color: #0b0000;
}
html body .container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 2rem;
}
:root {
  --h1: 600 2.5rem/140% "Outfit", serif;
  --h2: 600 1.75rem/130% "Outfit", serif;
  --h3: 600 1rem/160% "Outfit", serif;
  --p: 300 1rem/160% "Outfit", serif;
  --hand: 300 1.5rem/100% "Reenie Beanie", serif;

  --primary: #a70000;
  --secondary: #590000;
  --black: #0b0000;
}
@media (max-width: 500px) {
  html body .container {
    padding: 0 5vw;
  }
  :root {
    --h1: 600 2.4rem/140% "Outfit", serif;
  }
}


/* FONT */
@font-face {
  font-family: 'Reenie Beanie';
  src: url('assets/fonts/ReenieBeanie-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('assets/fonts/Outfit-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.hand {
  font: var(--hand);
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}
.streep {
  text-decoration: line-through;
}
.small {
  font-weight: 300;
}
h1 {
  font: var(--h1);
  text-transform: uppercase;
}
h2 {
  font: var(--h2);
  text-transform: uppercase;
}
h3 {
  font: var(--h3);
}
p { 
  font: var(--p);
  color: #ddd;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;

  background: linear-gradient(270deg, rgba(167, 0, 0, 1) 0%, rgba(89, 0, 0, 1) 100%);
  color: #fff;
  text-align: center;

  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);

  font: var(--h3);
  text-transform: uppercase;
}
.knop {
  display: inline-block;
  padding: .8rem 1rem .7rem;

  background: linear-gradient(270deg, rgba(167, 0, 0, 1) 0%, rgba(89, 0, 0, 1) 100%);
  color: #fff;
  text-align: center;

  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);

  font: 600 1rem/100% "Outfit", serif;
  text-transform: uppercase;
}
.instagram {
  display: inline-block;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  height: 3.5rem;
  width: 3.5rem;

  aspect-ratio: 1 / 1;

  background: var(--primary) url("assets/vector/icons/Instagram-HouseMovement.nl.svg") center no-repeat;
  background-size: 1.25rem;
}
.facebook {
  display: inline-block;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  height: 3.5rem;
  width: 3.5rem;

  aspect-ratio: 1 / 1;

  background: var(--primary) url("assets/vector/icons/Facebook-HouseMovement.nl.svg") center no-repeat;
  background-size: 1.25rem;
}
.tiktok {
  display: inline-block;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  height: 3.5rem;
  width: 3.5rem;

  aspect-ratio: 1 / 1;

  background: var(--primary) url("assets/vector/icons/TikTok-HouseMovement.nl.svg") center no-repeat;
  background-size: 1.25rem;
}
.whatsapp {
  display: inline-block;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  height: 3.5rem;
  width: 3.5rem;

  aspect-ratio: 1 / 1;

  background: var(--primary) url("assets/vector/icons/WhatsApp-HouseMovement.nl.svg") center no-repeat;
  background-size: 1.25rem;
}
.pagina h1 {
  font: 600 1.75rem/160% "Outfit", serif;
  text-transform: uppercase;
}


/* EFFECT */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 1.5s;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.3s;
}
.delay-2 {
  transition-delay: 0.6s;
}
.delay-3 {
  transition-delay: 0.9s;
}
.delay-4 {
  transition-delay: 1.2s;
}




/**** ALGEMEEN ****/

/* HEADER BASISSTIJLEN */
#primary-header {
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 2rem 0;
}
#primary-header.open {
background-color: #000;
  min-height: 6.6rem;
}
#primary-header .leeg {
  opacity: 0;
}
#primary-header.open .leeg {
  opacity: 1;
}
#primary-header .container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
#primary-header nav ul {
display: none;
flex-direction: column;
}
#primary-header.open nav > ul {
display: block;
position: absolute;
top: 6.6rem;
left: 0;
width: 100%;
background-color: #000;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
padding-bottom: .5rem;
}
#primary-header.open nav > ul > li {
max-width: 500px;
margin: 0 auto;
}
#primary-header nav ul li a {
display: inline-block;
margin: 0 2rem;
padding: 1.5rem 0;
width: calc(100% - 4rem);

font: var(--h2);
line-height: 160%;
color: white;
text-transform: uppercase;

cursor: pointer;

border-top: solid 1px #333;
}
#primary-header nav ul li.menu-item-has-children > a::after {
content: ' +';
float: right;
}
#primary-header nav ul li.menu-item-has-children .sub-menu {
display: none;
}
#primary-header nav ul li.menu-item-has-children .sub-menu a {
  padding: 0 0 1.75rem 1rem;
  font-weight: 300;
  color: #ddd;
  border: none;
  font-size: 1.5rem;
}
#primary-header nav ul li.menu-item-has-children.open .sub-menu {
display: block; /* Toon submenu bij open */
}
#primary-header nav ul .menu-item-has-children.open > a::after {
  content: ' -';
}
/* TOGGLE MENU STIJLEN */
#primary-header #primary-header-toggle {
display: flex;
flex-direction: column;
width: 1.5rem;
height: auto;
justify-content: center;

cursor: pointer; /* Handcursor bij hover */
}
#primary-header #primary-header-toggle .menu-streep {
  background-color: #fff; /* Kleur van de streepjes */
  display: inline-block;

  width: 100%;
  height: .10rem; /* Dikte van de streepjes */
  transition: transform .3s ease, background-color .3s ease; /* Animatie-effecten */
}
#primary-header.open .menu-top {
  transform: rotate(45deg); /* Draai bovenste streepje */
  height: .15rem !important; /* Consistente hoogte */
}
#primary-header .menu-middle {
  margin-top: .3rem; /* Ruimte tussen streepjes */
}
#primary-header.open .menu-middle {
  display: none !important; /* Verberg middelste streepje */
}
#primary-header .menu-bottom {
  margin-top:.3rem; /* Ruimte boven onderste streepje */
}
#primary-header.open .menu-bottom {
  transform: rotate(-45deg); /* Draai onderste streepje */
  margin-top:-.15rem; 
  height:.15rem !important; 
}
/* HOME ICON STIJLEN */
#primary-header .home-knop {
  width: 22px;
}
#primary-header .home-icon {
  display: none;
  width: 22px;
}
#primary-header.open .home-icon {
 display: block;
}
#primary-header .home-icon img {
  margin-bottom: -.5rem;
  width: 22px;
  height: 22px;
}




/* BANNER */
#banner {
  background: linear-gradient(0deg, rgba(89, 1, 1, 1) 0%, rgba(0, 0, 0, 1) 100%);
}
#banner .container {
  padding: 0;
  position: relative;
}
#banner h1 {
  padding: 0 2rem;
  position: absolute;
  bottom: 2rem;
  z-index: 2;
}
#banner .overlay {
  position: absolute;
  background: linear-gradient(180deg, rgba(10, 0, 0, .25) 0%, rgba(89, 1, 1, 1) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  z-index: -1;
  filter: grayscale(100%);
}
#banner img.gray {
  filter: grayscale(100%);
}
#banner.half {
  opacity: 0;
}
#banner.half img {
  aspect-ratio: 6 / 1;
  opacity: 0;
}
@media (max-width: 500px) {
  #banner h1 {
    padding: 0 5vw;
  }
}




/* KNOPPEN */
#knoppen {
  background: linear-gradient(0deg, #0b0000 50%, rgba(89, 1, 1, 1) 50%);
}
#knoppen .container {
  display: flex;
  gap: 1rem;
}
#knoppen a {
  z-index: 1;
  transition: 0.3s;
}
#knoppen a:hover {
  transform: scale(1.03);
}

/* SLOGAN */
#slogan .container {
  padding: 0;
}
#slogan .marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
#slogan .marquee span {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  font: 400 2rem/160% "Reenie Beanie", serif;
  color: #a70000;
  text-transform: uppercase;
}
#slogan .gradient-left {
  display: inline-block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  z-index: 1;
}
#slogan .gradient-right {
  display: inline-block;
  width: 25%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}
@keyframes scroll-left {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox img {
  max-width: 27.6rem;
  width: calc(100% - 10vw);
}
.lightbox.visible {
  display: flex;
}
.lightbox img {
  position: relative;
  left: 0;
  transition: transform 0.3s ease;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 40px;
  margin-top: -30px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  z-index: 9999;
  text-shadow: 0 0 2rem #000;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.close {
  font: var(--h2);
  padding: 1rem;

  position: absolute;
  top: calc(5svh - 1rem);
  right: calc(5svh - 1rem);

  cursor: pointer;
}

/* FOOTER */
footer {
  background-color: var(--secondary);
  padding: 1rem 0;
}
footer .container {
  display: flex;
  gap: 1rem;
}
footer .logo {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.5);

  height: 3rem;
  width: 3rem;
}

/* VERHUUR */
#verhuur .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;

  padding: 3rem 2rem;

  background: 
      linear-gradient(to top, rgba(89,0,0,.85), rgb(0, 0, 0,.85)),
      url('assets/img/BoatParty-HouseMovement.nl.webp') center no-repeat;
}
#verhuur h2 {
  margin-bottom: .5rem;
  font-size: 1.65rem;
}
#verhuur a {
  padding: 1.2rem 0 1rem !important;
}




/* ========== HOME-PAGE ========== */

/* AGENDA */
#agenda {
padding: 4rem 0;
}
#agenda .grid {
display: flex;
flex-direction: column;
gap: 1.5rem;

margin-top: 1.5rem;
}
#agenda .grid .box {
  display: grid;
  grid-template-columns: 4rem auto;
  align-items: center;
  transition: 0.3s
}
#agenda .grid a.box:hover {
  transform: scale(1.03);
}
#agenda .grid .box .datum {
font: 300 1rem/75% "Reenie Beanie", serif !important;
text-transform: uppercase;
color: var(--primary);
display: block;
width: 3rem;
text-align: center;
}
#agenda .grid .box .datum span {
font-size: 3rem !important;
line-height: 80%;
color: var(--primary);
display: block;
}
#agenda .grid .text .titel {
display: flex;
justify-content: space-between;
}
#agenda .grid hr {
height: 1px;
background-color: #333;
border: none;
}

/* GALERIJ */
#galerij {
  padding: 4rem 0;
}
#galerij .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#galerij .grid {
  margin-top: 1rem;
  transition: 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#galerij .grid img {
  filter: grayscale(100%);
  transition: 0.2s;
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  cursor: pointer;
}
#galerij .grid img:hover {
  filter: grayscale(0%);
}
.galerij-boatparty #galerij .grid img {
  aspect-ratio: 1/1;
}





/**** EVENEMENTEN ****/

/* INFORMATION */
#information {
  padding: 4rem 0;
}
#information h1 {
  font: var(--hand);
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}
#information .grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  margin-top: 1.5rem;
}
#information .grid .box {
  display: grid;
  grid-template-columns: 4rem auto;
  align-items: center;
}
#information .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  margin-top: 1rem;
}
#information .gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* TICKETS */
#tickets {
  padding: 4rem 0;
}
#tickets .box {
  border: solid 1px #333;
  padding: 1rem;
  margin-top: 1rem;
}




/**** GALERIJ ****/

/* GALERIJ */
.galerij #galerij {
  padding: 8rem 0 4rem;
}
.galerij #galerij img {
  filter: none;
}


