/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Segoe UI', sans-serif;
  /* color: white; */
/* background-image: url('../wallpaper.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
}


.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  
  pointer-events: none; /* Damit das Video nicht anklickbar ist */
}


/*  .background {
background-image: url('./wallpaper.jpg');
background-color: red;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
*/

/* Main Layout */
main {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}


/* Vollbild Modal */
.fullscreen-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Schließen-Button */
.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.3s ease;
  z-index: 10;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Optional: Overlay auch im Modal unten anzeigen */
.modal-content .overlay {
  position: absolute;
  bottom: 70px;
  left: 20px;
}

