@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Titillium Web', sans-serif;
  color: #fff;
  overflow: hidden; /* index => kein Scroll */
}

.logo {
  position: absolute;
  top: 70px; 
  left: 40px;
  width: 70px;
  z-index: 20;
}

.background-video {
  position: fixed;
  top: 0; left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay-Menü-Trigger */
.menu {
  position: absolute;
  top: 30px; 
  right: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  transition: color 0.3s;
}
.menu:hover {
  color: red;
}

/* Hero-Text */
.hero-text {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 10;
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero-text p {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.4;
}
.cta-button {
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid #fd0202;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.cta-button:hover {
  background-color: #fd0202;
}

/* Overlay */
.menu-overlay {
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 15; 
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
}
/* Panel */
.menu-panel {
  position: fixed;
  top: 0; 
  right: -400px;
  width: 300px; 
  height: 100%;
  background-color: #fff;
  z-index: 25;
  padding: 50px 30px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-panel.active {
  right: 0;
}
.menu-panel h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
}
.menu-panel a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  margin: 10px 0;
  display: block;
}
.menu-panel a:hover {
  color: red;
}
.menu-panel > div[style] {
  margin-top: 40px;
  text-align: right;
  color: #000;
  font-weight: 600;
}
