
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Zorgt ervoor dat het overlay bovenop de rest van de content staat */
    background-color:rgba(0, 0, 0, 0.5); /* Semi-transparante achtergrond */
}

#popup {
    background-color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #cbb26a;
    text-align: center;
}

.vid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998; /* Zorgt ervoor dat de video onder de overlay staat */
}

#background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;}

/* Style the links inside the navigation bar */
.navbar a {
  float: right;
  display: block;
  color: #cbb26a;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #04AA6D;
  color: white;
}
body {
	background: black;

  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
     font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

* { 
 margin: 0; 
 padding: 0;
 box-sizing: border-box;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.main-content {
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* Media Query for tablets */
@media only screen and (min-width: 600px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 2em;
    }

    .main-content {
        padding: 40px;
    }

    footer {
        padding: 2em;
    }
}

/* Media Query for desktops */
@media only screen and (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    header {
        padding: 3em;
    }

    .main-content {
        padding: 60px;
    }

    footer {
        padding: 3em;
    }
}


nav.primary-navigation {
  margin: 0 auto;
  display: block;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 18px;
  z-index: 3;
}


nav.primary-navigation ul li {
  list-style: none;
  margin: 0 auto ;
  border-left: 4px solid #cbb26a;
  display: inline-block;
  padding: 0 28px;
  position: relative;
  text-decoration: none;
  text-align: center;
  font-family: arvo;
  font-weight: 200;
}


nav.primary-navigation li a {
  color: #cbb26a;
}


nav.primary-navigation li a:hover {
  color: #cbb26a;
}


nav.primary-navigation li:hover {
  cursor: pointer;
}


nav.primary-navigation ul li ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding-left: 0;
  left: 0;
  display: none;
  background: #7e6e3eaf;;
}


nav.primary-navigation ul li:hover>ul,
nav.primary-navigation ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
  min-width: 250px;
  text-align: left;
  padding-top: 20px;
  box-shadow: hidden;
}


nav.primary-navigation ul li ul li {
  clear: both;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  border-style: none;
}


nav.primary-navigation ul li ul li a:hover {
  padding-left: 10px;
  border-left: 2px solid #cbb26a;
  transition: all 0.3s ease;
}


a {
  text-decoration: none;
  font-weight: 400;
}


a:hover {
  color: #cbb26a;
}


ul li ul li a {
  transition: all 0.5s ease;
}


.vid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.5;
}

.vid video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #cbb26a;
  width: 100%;
  padding: 20px;
}


@media screen and (max-width: 600px) {
  .vid {
    object-fit: contain;
  }

* {
  box-sizing: border-box;
}
