/* Font-faces */
@font-face {
  font-family: 'Orbitron';
  src: url('../fonts/Orbitron-Bold.otf') format('opentype'),
    url('../fonts/Orbitron-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.otf') format('opentype'),
    url('../fonts/Montserrat-Bold.otf') format('opentype');
}

/* Reset en basisstijl */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* Header */
header {
  background: url('../img/background.jpg') no-repeat center/cover;
  width: 100%;
  position: relative;
  z-index: 0;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  margin: 0 auto;
  font-size: 3rem;
  color: #fff;
  padding: 20px 0 10px;
}

/* Navigatie en logo */

.navbar {
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 0;
  position: relative;
}

.navbar-brand {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 3;
}

.navbar-brand img {
  width: 100px;
  transition: transform 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
}

.navbar-brand img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px #ff00ff);
}

/* Hamburger button */
.navbar-toggler {
  border: none;
  color: white;
}

.navbar-toggler-icon {
  filter: invert(100%);
}

/* Navigatie */
.navbar-collapse {
  flex-grow: 0 !important;
  justify-content: center !important;
  width: 100%;
}

.navbar-nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.nav-item {
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  color: white !important;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
  text-shadow: 0 0 5px #000, 0 0 10px #000;
}

.nav-link:hover {
  border-bottom-color: #ff00ff;
}

/* Titels */
h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-top: 10px;
  color: #fff;
}

/* Main content */
main {
  padding: 15px 20px;
  flex: 1;
  text-align: center;
}

.imbedded-video {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border: 0;
  aspect-ratio: 16 / 9;
}

.concerten {
  margin: 20px;
  margin-top: 0;
}

.imbedded-map {
  width: 100%;
  height: 100%;
  border: 0;
  padding-bottom: 20px;
}

img.img-fluid {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.eventsBtn {
  color: #000;
  background-color: #ff00ff;
  font-weight: bold;
}

.eventsBtn:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.eventsBtn i {
  color: inherit;
}

a.toTicket {
  color: #ff00ff;
  border: 2px solid #ff00ff;
}

a.toTicket:hover {
  color: #400054;
}

.video-container {
  text-align: center;
}

.infoText {
  width: 630px;
  padding-bottom: 20px;
}

.custom-input {
  background-color: #222;
  color: #cbcbcb;
  border: 1px solid #444;
}

.custom-input::placeholder {
  color: #888;
}

.custom-input:focus {
  border-color: #ff00ff;
  outline: none;
  box-shadow: 0 0 0 0.2rem #ff00ff55;
  background-color: #c2c2c2;
}

main a {
  color: #ff00ff;
}

main a:hover {
  color: #8800b2;
}

/* Afbeeldingen */
img {
  max-width: 100%;
  height: auto;
}

.img-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.crop-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* Footer */
footer {
  background-color: #1a1a1a;
  color: #c6c6c6;
  padding: 10px;
  font-size: 14px;
  border-top: 1px solid #444;
  width: 100%;
  text-align: center;
}

footer a {
  color: #ff00ff;
}

footer a:hover {
  color: #8800b2;
}

/* Mobiel */
@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 10px;
  }
}