/* style.css */
@font-face{
  font-family: "LushTimes";
  src: url("fonts/timesbd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ...dein restlicher CSS... */
/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* Fullscreen Video */
#bg-video{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

/* Hamburger Button */
.hamburger{
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  z-index: 30;

  display: grid;
  place-items: center;
  cursor: pointer;
}

.hamburger span{
  display: block;
  width: 44px;
  height: 7px;
  background: rgba(255,255,255,0.9);
  margin: 5px 0;
  border-radius: 2px;

  transition: transform 200ms ease, opacity 200ms ease;
  transform-origin: center;
}

/* Hamburger -> X */
.hamburger.is-open span:nth-child(1){
  transform: translateY(12px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2){
  opacity: 0;
}
.hamburger.is-open span:nth-child(3){
  transform: translateY(-12px) rotate(-45deg);
}
/* Wenn Menü offen: Balken schwarz */
.hamburger.is-open span{
  background: #000;
}

/* Hamburger wird zu X */
.hamburger.is-open span:nth-child(1){
  transform: translateY(14px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2){
  opacity: 0;
}

.hamburger.is-open span:nth-child(3){
  transform: translateY(-14px) rotate(-45deg);
}
/* Menü Overlay */
.menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 85vw);
  background: #fff;
  z-index: 20;

  transform: translateX(100%);
  transition: transform 220ms ease;

  padding: 90px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu.is-open{
  transform: translateX(0);
}

.menu-item{
  font-family: "LushTimes", "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: 30px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.02em;
}
/* Wenn Menü offen: X schwarz (auf weißem Menü sichtbar) */
.hamburger.is-open span{
  background: #000;
}
/* Backdrop (Klickfläche zum Schließen) */
.backdrop{
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0,0,0,0.0);
  display: none;
}

.backdrop.is-open{
  display: block;
}@media (max-width: 768px){
  #bg-video{
    object-fit: contain;
    background: #000;
  }
}@media (max-width: 768px){
  /* Video komplett zeigen */
  #bg-video{
    object-fit: contain;
    background: #fff; /* statt schwarz */
  }

  /* Hamburger auf weißem Rand sichtbar */
  .hamburger span{
    background: rgba(0,0,0,0.9);
  }

  /* Wenn Menü offen: bleibt schwarz */
  .hamburger.is-open span{
    background: #000;
  }
}/* === Rotate Screen Hint (Mobile Portrait) === */

.rotate-hint{
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: #000000;
  z-index: 9999;

  display: none;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;

  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Portrait blockieren */
@media (max-width: 768px) and (orientation: portrait){

  #bg-video,
  .hamburger,
  .menu,
  .menu-overlay{
    display: none !important;
  }

  .rotate-hint{
    display: flex;
  }
}