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

/* DESKTOP */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* VIDEO */
.video-wrapper {
  width: calc(100vw - 80px);   
  height: calc(100vh - 80px);  
  margin: 40px auto;       
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LINKS */
a {
  text-decoration: none;
  color: black;
}

/* 🔥 NAME (oben rechts) */
.top-right-name {
  position: fixed;
  top: 20px; /* etwas mehr Abstand */
  right: 20px;
  font-size: 14px;
}

/* 🔥 BUTTONS (GLOBAL – für ALLE Seiten gleich) */
.bottom-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  cursor: pointer;
}

.bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* CONTACT PAGE */
.contact-page {
  height: 100vh;
  position: relative;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.email {
  color: black;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .container {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .video-wrapper {
    width: calc(100vw - 40px);   /* etwas kleinerer Rand mobile */
    height: auto;
    margin: 20px auto;
  }

  video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .top-right-name {
    top: 20px; /* mobile spacing */
  }

  .bottom-left,
  .bottom-right {
    bottom: 30px; /* besser für iOS UI */
  }
}
