/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  padding-top: 80px; /* Platz für Header */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 80px; /* 🔥 feste Höhe */

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 50px; /* kein extra oben/unten Padding */

  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);

  z-index: 1000;
}

/* LOGO LINKS */
.logo {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);

  display: inline-block; /* 🔥 wichtig für Animation */
}

/* Linie */
.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;
  background: white;

  transition: width 0.3s ease;
}

/* Hover */
.logo:hover::after {
  width: 100%;
}

.logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* NAVIGATION ZENTRIERT */
.nav {
  display: flex;          /* 🔥 wichtig */
  gap: 30px;              /* Abstand zwischen Links */
}

.nav a {
  color: white;
  text-decoration: none;
}

.nav a:visited {
  color: white;
}

.nav a:hover {
  opacity: 0.7;
}

/* HERO VIDEO */
.hero {
  height: 100vh;
  position: relative;
  overflow: visible ;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* 🔥 wichtig */
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* INTRO */
.intro {
  text-align: center;
  padding: 60px 20px;
}








/* GALERIE */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 🔥 macht sie quadratisch */
  object-fit: cover;
  border-radius: 15px;
}

.gallery img:hover {
  transform: scale(1.05);
}




/* SOCIAL */
.social {
  text-align: center;
  padding: 40px;
}

.social a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav a {
  position: relative;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Linie */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;
  background: white;

  transition: width 0.3s ease;
}

.nav a:hover {
  transform: scale(1.05);
}

.nav a:hover::after {
  width: 100%;
}
.nav a {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}










/* =========================
   🔲 LIGHTBOX
========================= */

.lightbox {
  display: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.4);

  justify-content: center;
  align-items: center;

  z-index: 9999;
}



.lightbox img {
  max-width: 50%;
  max-height: 60%;

  object-fit: contain;

  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.show img {
  transform: scale(1);
}

.lightbox img:hover {
  transform: scale(1.05);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


/* =========================
   📐 SPLIT LAYOUT (About / Sections)
========================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

/* Bild */
.split-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 15px;
}

/* Text */
.split-text {
  color: white;
}

.split-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 18px;
  line-height: 1.6;
}


/* =========================
   🖼️ PORTFOLIO GRID
========================= */

.portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 40px;

  max-width: 1200px;
  margin: auto;
}

/* Bilder */
.portfolio img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;

  cursor: pointer;

  transition: transform 0.4s ease, filter 0.3s ease;

  /* Fade In Animation */
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
}


/* 🔥 Hover Effekt */
.portfolio:hover img {
  filter: brightness(0.6);
}

.portfolio img:hover {
  transform: scale(1.1);
  filter: brightness(1);
  z-index: 2;
}

/* 🔥 Klick Zoom */
.portfolio img.active {
  transform: scale(1.4);
  z-index: 10;
  position: relative;
}


/* 📱 Responsive */
@media (max-width: 900px) {
  .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================
   🎞️ ANIMATIONEN
========================= */

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* =========================
   🎬 OVERLAY / REVEAL
========================= */

.portfolio-wrapper {
  position: relative;
  overflow: hidden;
}

.reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: black;
  z-index: 1;

  animation: revealAnimation 1.5s ease forwards;
}

@keyframes revealAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}


/* =========================
   🎯 IMAGE POSITION HELPERS
========================= */

.top-focus {
  object-position: 50% 20%;
}









/* =========================
   🕒 TIMELINE (CENTER LINE)
========================= */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 100px auto;
  padding: 40px 0;
}

/* 🔥 DURCHGEHENDE LINIE */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 2px;
  height: 100%;

  background: white;
  opacity: 0.3;
}

/* ITEM */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 40px 0;
}

/* LINKS (Datum) */
.timeline-left {
  text-align: right;
  padding-right: 40px;
  font-size: 14px;
  opacity: 0.7;
}

/* RECHTS (Text) */
.timeline-right {
  padding-left: 40px;
  font-size: 16px;
}

/* 🔥 Punkt auf der Linie */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

.timeline-detail {
  max-height: none; /* 🔥 immer sichtbar */
  opacity: 0.7;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}














/* FOOTER */
.footer {
  margin-top: 100px;
  padding: 40px 20px;
}

/* Linie */
.footer-line {
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.3;
  margin-bottom: 20px;
}

/* Inhalt zentriert */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

/* Copyright */
.footer-content p {
  font-size: 12px;
  opacity: 0.6;
}

/* 🔥 WICHTIG: Container für Links */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Mobile */
}

/* 🔥 BUTTON STYLE + ANIMATION */
.footer-links a {
  position: relative;

  color: white;
  text-decoration: none;
  font-size: 14px;

  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Hover: Zoom + Rahmen */
.footer-links a:hover {
  transform: scale(1.05);
  border-color: white;
}

/* Underline Animation */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 4px;

  width: 0%;
  height: 1px;
  background: white;

  transition: width 0.3s ease;
}

/* Hover Linie */
.footer-links a:hover::after {
  width: 60%;
}


.about-img {
  object-position: 5% 30%; /* 🔥 hier spielen */
}

.about-img-1 {
  object-position: 5% 10%; /* 🔥 hier spielen */
}




.elphi {
  object-position: 50% 30%; /* 🔥 hier steuerst du den Ausschnitt */
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}





.timeline-item {
  position: relative;
}

.timeline-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

/* Text Highlight */
.timeline-item:hover .timeline-right {
  color: white;
}

/* andere leicht abdunkeln */
.timeline:hover .timeline-item {
  opacity: 0.4;
}

.timeline:hover .timeline-item:hover {
  opacity: 1;
}

.timeline-detail {
  max-height: none; /* 🔥 immer sichtbar */
  opacity: 0.7;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}

/* Wenn aktiv */
.timeline-item.active .timeline-detail {
  max-height: 200px;
  margin-top: 10px;
}



.timeline-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline:hover .timeline-item {
  opacity: 0.4;
}

.timeline-item:hover {
  transform: translateY(-5px);
  opacity: 1;
}

/* Text stärker hervorheben */
.timeline-item:hover .timeline-detail {
  opacity: 1;
}

.timeline-item:first-child {
  font-weight: 600;
}




/* JAHR */
.timeline-left {
  font-size: 14px;
  opacity: 0.6;
}

/* TITEL (z. B. "Festival Videoproduktion") */
.timeline-right {
  font-size: 18px;
  font-weight: 500;
}

/* DETAIL TEXT */
.timeline-detail {
  font-size: 14px;      /* 🔥 kleiner */
  line-height: 1.5;
  opacity: 0.6;         /* 🔥 dezenter */
  margin-top: 6px;
}








/* SECTION mittig */
.timeline-section {
  display: flex;
  justify-content: center;
  margin: 150px 0;
}

/* Timeline Block */
.timeline {
  position: relative;
  max-width: 500px;
  width: 100%;
}

/* Linie in der Mitte */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;

  left: 50%;
  transform: translateX(-50%);

  width: 2px;
  background: white;
  opacity: 0.3;
}

/* Items */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 35px 0;
  position: relative;
  
}



.timeline-left {
  text-align: right;
  padding-right: 20px;
  font-size: clamp(14px, 1.2vw, 18px);
  opacity: 0.6;
}

.timeline-right {
  padding-left: 20px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
}


/* Punkte */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* 🔥 sichtbar */
.reveal-element.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item {
  transition-delay: 0.2s;
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }






Druch Klick navigation - 

.lightbox {
  display: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.7);

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* Bild */
.lightbox img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Pfeile */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 20px;

  user-select: none;
}

/* Links / Rechts */
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* Hover */
.arrow:hover {
  opacity: 0.6;
}







Technik 

.gear {
  text-align: center;
  padding: 100px 20px;
}

.gear h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* Grid */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  max-width: 900px;
  margin: auto;
}

/* Items */
.gear-item {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 10px;

  transition: all 0.3s ease;
}

/* Hover Effekt */
.gear-item:hover {
  transform: translateY(-5px);
  border-color: white;
}

/* Titel */
.gear-item h3 {
  margin-bottom: 10px;
}

/* Text */
.gear-item p {
  opacity: 0.7;
  font-size: 14px;
}

@media (max-width: 900px) {
  .gear-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }
}


.process {
  max-width: 700px;
  margin: 150px auto;
  padding: 0 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

/* Steps */
.process-step {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.3);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step p {
  opacity: 0.7;
  line-height: 1.6;
}










Kontakt 


.contact-cta {
  text-align: center; /* 🔥 DAS zentriert den Text */
  margin: 120px 0 80px;
}

.cta-text {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-subtext {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 25px;
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Button Style (wie Footer) */
.cta-button {
  color: white;
  text-decoration: none;

  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;

  transition: all 0.3s ease;
}

/* Hover */
.cta-button:hover {
  transform: scale(1.05);
  border-color: white;
}

.contact-cta {
  text-align: center;
  margin: 120px 0 80px;

  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 das ist der Schlüssel */
}







Technik - Vid 


/* SECTION */
.hero-video-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -2;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6); /* 🔥 wichtig für Lesbarkeit */
  z-index: -1;
}

/* CONTENT */
.gear-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.video-section {
  width: 100%;
  height: 70vh; /* 🔥 Höhe anpassen */

  overflow: hidden;
  margin-top: 100px;
}

.video-full {
  width: 100%;
  height: 100%;

  object-fit: cover;
}






vid abspielen 


/* WRAPPER */
.gear-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;

  max-width: 1100px;
  margin: auto;
}

/* VIDEO BOX */
.gear-video-box {
  width: 100%;
  height: 300px;

  background: black;
  border-radius: 15px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
#gear-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER */
.gear-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gear-item:hover {
  transform: translateY(-5px);
  border-color: white;
}



neu 


/* VIDEO ITEM */
.video-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;
}

/* VIDEO */
#gear-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: none; /* 🔥 erst unsichtbar */
}

/* Placeholder */
.video-placeholder {
  opacity: 0.5;
  font-size: 14px;
}

.video-item {
  grid-column: span 2;
  height: 300px;
}


Ecken - 

/* VIDEO ITEM (Container) */
.video-item {
  border-radius: 15px;
  overflow: hidden; /* 🔥 DAS ist der wichtigste Punkt */
  position: relative;
}

/* VIDEO */
#gear-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: none; /* bleibt erstmal versteckt */
}
#gear-video {
  transition: transform 3s ease;
}

.video-item:hover #gear-video {
  transform: scale(1.05);
}




 .gallery-slider {
  position: relative;
  width: 80%;
  margin: 80px auto;
}

#slider-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

/* Pfeile */
.gallery-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.5);
  color: white;
  border: none;

  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;

  border-radius: 50%;
}

.left {
  left: 20px;
}

.right {
  right: 20px;
}


/* DESKTOP */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
}

/* TABLET */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HANDY */
@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.header {
  padding: 10px 20px;
}

/* Mobile */
@media (max-width: 700px) {
  .nav {
    gap: 15px;
    font-size: 12px;
  }

  .logo img {
    height: 30px;
  }
}

@media (max-width: 700px) {
  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline-left,
  .timeline-right {
    padding: 0;
  }

  .timeline::before {
    left: 50%;
  }
}



.gallery {
  display: flex;              /* 🔥 horizontal */
  gap: 20px;

  overflow-x: auto;          /* 🔥 scroll */
  scroll-behavior: smooth;

  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Bilder */
.gallery img {
  width: 300px;              /* 🔥 ALLE gleich groß */
  height: 300px;
  object-fit: cover;

  border-radius: 15px;
  flex-shrink: 0;            /* 🔥 verhindert schrumpfen */

  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effekt */
.gallery:hover img {
  filter: brightness(0.6);
}

.gallery img:hover {
  transform: scale(1.08);
  filter: brightness(1);
}
.gallery::-webkit-scrollbar {
  display: none;
}

.gallery {
  scroll-snap-type: x mandatory;
}

.gallery img {
  scroll-snap-align: start;
}




.gallery {
  display: flex;
  gap: 20px;

  overflow-x: auto;   /* 🔥 DAS ist entscheidend */
  scroll-behavior: smooth;

  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;

  flex-shrink: 0; /* 🔥 verhindert zusammenschieben */

  border-radius: 15px;
  cursor: pointer;
}


.gallery {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 40px;

  width: 100%;         /* 🔥 wichtig */
  max-width: none;     /* 🔥 entfernt Limit */
}

.gallery img {
  width: 300px;
  height: 300px;

  flex-shrink: 0; /* 🔥 verhindert schrumpfen */

  object-fit: cover;
}

.gallery {
  scroll-snap-type: x mandatory;
}

.gallery img {
  scroll-snap-align: start;
}



/* 🔥 Grundzustand (unsichtbar) */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* 🔥 sichtbar */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-of-type(1) { transition-delay: 0.1s; }
.process-step:nth-of-type(2) { transition-delay: 0.2s; }
.process-step:nth-of-type(3) { transition-delay: 0.3s; }
.process-step:nth-of-type(4) { transition-delay: 0.4s; }
.process-step:nth-of-type(5) { transition-delay: 0.5s; }

.contact-cta {
  transition-delay: 0.6s;
}



.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-of-type(1) { transition-delay: 0.1s; }
.process-step:nth-of-type(2) { transition-delay: 0.2s; }
.process-step:nth-of-type(3) { transition-delay: 0.3s; }
.process-step:nth-of-type(4) { transition-delay: 0.4s; }
.process-step:nth-of-type(5) { transition-delay: 0.5s; }

.contact-cta {
  transition-delay: 0.6s;
}

.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 🔥 Hover Effekt */
.process-step:hover {
  transform: scale(1.03); /* leicht vergrößern */
}

/* Optional: leichter Glow */
.process-step:hover {
  box-shadow: 0 10px 30px rgba(255,255,255,0.05);
}
.process-step {
  transition: all 0.4s ease;
}
.process-step:hover {
  transform: scale(1.03) translateY(-5px);
}



