body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}

#app {
  height: 100%;
  font-family: "Montserrat", serif;
}

.hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

h1, h2 {
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 0 0 20px rgba(0,0,0,1);
  line-height: 100%;
  user-select: none;
}

h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
}


.erfahremehr-dropdown {
    position: relative;
    display: inline-block;
}

.button-erfahre-mehr {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #ff00889d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}


.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333333a8;
    min-width: 150px;
    border-radius: 5px;
    margin-top: 10px;
    z-index: 1;
}

.dropdown-menu a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #555;
}


#canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.hero, footer {
  position: relative;
  z-index: 1;
  color: white;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #222222;
    padding: 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.modal input {
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
}

.modal button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    background-color: #ff0088c8;
    color: white;
}

.modal button:hover {
    background-color: #ff00888d;
}


#datenschutz-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-box {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

.overlay-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.overlay-box button:hover {
  background: #333;
}

.overlay-box a {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #ff0088;
  text-decoration: none;
}

.overlay-box a:hover {
  text-decoration: underline;
}
.overlay-box h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000000;
  text-shadow: none;
  word-break: break-word;
  text-align: center;
}

footer {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-size: 0.9em;
}

