@font-face {
  font-family: 'nosferatu-font';
  src:  url('../fonts/Nosferatu.ttf') format('truetype'),
        url('../fonts/Nosferatu.woff') format('woff'),
        url('../fonts/Nosferatu.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

main {
  position: relative;
  z-index: 5;
}

body {
    /*background-color: #121212; */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    min-height: 100%;
    background-image: url(bilder/backround.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

}

#pausebody {
  background-image: none;
  background-color: #6A1B1B;
}

header, footer {
    /* background-color: #1f1f1f; */
    padding: 20px;
    padding-top: 0px;
    text-align: center;
     background: rgba(0, 0, 0, 0.9);
    border: 2px solid #900;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

footer {
  padding-bottom: 0px;
}

h1, h2 {
    color: #ffcc00;
    font-family: 'nosferatu-font', sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease;
}
a:hover {
  color: #666;
}

a .highlight {
  transition: 0.25s ease;
}

a .highlight:hover {
  color: #fff;
}

nav {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


nav a {
  margin-right: 15px;
}

nav a:last-child {
  margin-right: 0px;
}

.all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

form input, form button {
    margin-top: 10px;
    padding: 10px;
    background-color: #333;
    border: none;
    color: #fff;
}

form input[type="file"] {
    background-color: #666;
}

form button {
    background-color: #ffcc00;
    cursor: pointer;
}

#about, #the-nosferatu-nights, #guide, #impressum{
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #900;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  margin-top: 40px;
}

#error img {
  max-width: 50%;
}

li {
  list-style-type: disc;
}

section {
  margin-bottom: 40px;
}

.highlight {
  color: #ff4d4d;
  font-weight: bold;
  font-family: 'nosferatu-font', sans-serif;
}

a .highlight:hover {
  color: #ffcc00;
}

.notice {
  font-style: italic;
  color: #adadad;
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
}

.registration-container {
  width: 80%;
  max-width: 600px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #900;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ff4d4d;
}

input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #555;
  background: #2a2a2a;
  color: #e5e5e5;
  border-radius: 5px;
}

textarea {
  resize: none;
  height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  background: #b30000;
  color: #e5e5e5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #ff4d4d;
}

#einreichung {
  display: none;
}

@media (max-width: 768px) {
  body {
      background-size: auto 100%;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin-right: 0px;
    margin-bottom: 5px;
  }

  nav a:last-child {
    margin-bottom: 0px;
  }
}


/*Audio*/
.container-audio {
    width: 66%;
    height: auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #eee;
    color: #444;
    margin: 20px auto;
    overflow: hidden;
    text-align: center;
}
audio {
  width:100%;
}
