/* archivo-regular - latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/archivo-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Apparat';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/apparat-medium.woff2') format('woff2');
}

:root {
  --gialloyellow-color: #FEFF7A;
  --audreyblush-color: #F2BEBD;
  --nocturneroyale-color: #03124A;
  --darkvader-color: #161616;
  --neutralgrey-color: #f2f2f2;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Archivo', sans-serif;
  background: var(--darkvader-color);
  scroll-behavior: smooth;
  overflow-x: clip;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  z-index: 1000;
  background-color: none;
}

.fade-item {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fade-item.visible {
  opacity: 1;
  pointer-events: auto;
}

.logo {
  position: absolute;
  left: 4rem;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease; 
  opacity: 1; 
  cursor: pointer;
}

.logo.hidden {
  opacity: 0; 
}

.site-logo {
  display: block;
  width: 45vw;
  max-width: none;  
  height: auto;     
  margin: 0 auto;   
}

a {
  text-decoration: none;
}

p {
  font-size: clamp(0.9rem, 1.2vw, 1.5rem);
  line-height: 1.5;
}

h1 {
  font-family: 'Apparat', Arial, sans-serif;;
  /* font-size: clamp(15rem, 12.5vw, 30rem); */
  font-size: clamp(13rem, 10.42vw, 25rem);
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-family: 'Archivo', Arial, sans-serif;;
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2vw, 3rem);
}

h3 {
  font-family: 'Archivo', Arial, sans-serif;;
  margin-bottom: 10px;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2.5rem);
}

/* --- NAV --- */
nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  gap: 0rem; /* Abstand zwischen den Links */
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-family: 'Apparat', Arial, sans-serif;;
  font-size: clamp(1rem, 1.11vw, 2rem);
  text-decoration: none;
  text-transform: uppercase;
  color: var(--darkvader-color);
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
  border-radius: 10px;
  padding: 8px 15px;
}


nav ul li a:hover {
  color: var(--gialloyellow-color);
}

/* Aktiver Menüpunkt */
nav ul li a.highlight {
  background: black;
  color: white;
}

/* --- BURGER --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.burger span {
  height: 3px;
  width: 100%;
  background: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- MOBILE Overlay --- */
@media (max-width: 768px) {
  nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    visibility: hidden;
  }

  nav.active {
    transform: translateY(0);
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  nav ul li a {
    font-size: 2rem;
    color: var(--white-color);
  }

  nav ul li a:hover {
    color: var(--gialloyellow-color);
  }

  .burger {
    display: flex;
  }
}

/* --- MAIN --- */
main {
  width: 100%;
}

section {
  position: relative; 
  z-index: 20;
}

/* --- Home --- */
#home {
  position: relative;
  height: 200vh; /* Scrollraum */
  background: none;
}

/* --- Video-Container bleibt im ersten Viewport stehen --- */
.home-video-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

/* --- Video selbst --- */
#home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Overlay über Video --- */
.home-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: 1;
}

.home-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.site-logo {
  display: block;
  width: 45vw;
  height: auto;
  margin: 0 auto;
}

.slogan {
  color: #FEFF7A;
  opacity: 0;
  transition: opacity 0.4s linear;
  text-transform: uppercase;
  text-align: left;
  margin-left: 4%;
  font-size: clamp(1.5rem, 2vw, 5rem);
}

/* --- Pfeil unten --- */
.scroll-down {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 15;
}

.scroll-down:hover {
  opacity: 0.7;
}

.pfeil {
  width: 40px; 
  height: 40px; 
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}


/* --- Section Hero --- */
#hero {
  position: relative;
  background-color: var(--darkvader-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
  min-height: 80vh;
  z-index: 20;

  /* drei Hintergründe: oben -> unten */
  background-image: url("img/kamera.png"), url("img/objektiv.png"), url("img/pattern.jpg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left bottom, right 70px, center;
  background-size: 80% auto, 20% auto, 300px 300px;
  background-attachment: scroll, scroll, scroll;
}


#hero h2 {
  position: absolute;
  top: 33vh;    /* Abstand von oben */
  left: 50vw;  /* Abstand von links */
}


/* --- Section Kunden --- */
#kunden {
  background-color: var(--darkvader-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 140px 20px 140px 20px;
  box-sizing: border-box;
  overflow-y: none; /* falls Inhalt zu groß */

  /* zwei Hintergründe: */
  background-image: url("img/skate.png"), url("img/stativ.png");
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 8% left, top 50px right;
  background-size: 25% auto, 20% auto;
  background-attachment: scroll, scroll;
}

#kunden h1 {
  color: var(--gialloyellow-color);
  margin-bottom: 3rem;
}

.kunden-text {
  max-width: 600px;
  margin: 2rem auto;
}

.kunden-text h3 {
  color:var(--gialloyellow-color);
  margin-bottom: 1rem;
  text-align: left;
}

.kunden-text p {
  color: #ccc;
}

/* Kunden Video */
.kunden-video {
  margin: 3rem auto;
  max-width: 600px;
}

.kundenvideo-wrapper {
  position: relative;
  max-width: 600px;
}

.kundenvideo-wrapper img {
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;              
  color: var(--gialloyellow-color);                 
  background: transparent;       
  border: 5px solid #FEFF7A;     
  border-radius: 50%;           
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kunden-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  justify-content: flex-end;
}

/* Kunden Testimonials */
.kunden-testimonials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding: 10rem 0 5rem 0;
}

.testimonial {
  background: var(--neutralgrey-color);
  padding: 1.5rem;
  border-radius: 8px;
  width: 280px;
  text-align: left;
}

.testimonial .name {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.kunden-skateboard {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      width: 220px;
      opacity: 1;
      z-index: 10; /* immer über allem */
    }


/* --- Section Fokus --- */
#fokus {
  background-color: var(--neutralgrey-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 140px 20px;
  box-sizing: border-box;
  overflow-y: none; /* falls Inhalt zu groß */
  position: relative;

 /* zwei Hintergründe: */
  background-image: url("img/hands.png"), url("img/pattern.jpg");
  background-repeat: no-repeat, repeat;
  background-position: center 0px, center;
  background-size: 60% auto, 300px 300px;
  background-attachment: scroll, scroll;
}

.fokus-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.fokus-text {
  max-width: 65%;
  z-index: 100;
}

#fokus p {
  margin-bottom: 100px;
  margin-top: 100px;
  text-align: center;
}

#fokus h3 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem; 
  z-index: 2;
}

h3.hover-fokus {
  position: relative;
  cursor: pointer;
  min-height: 2.2em; /* Höhe des normalen Textes, damit nichts springt */
}

h3.hover-fokus span.normal,
h3.hover-fokus span.hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  transition: opacity 0.3s ease;
  word-break: break-word;
}

h3.hover-fokus span.hover {
  opacity: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.5rem);
  font-weight: normal;
  color: #444;
  line-height: 1.3;
  padding: 0 10px;
  max-width: 100%; /* Begrenze auf die Breite des H2 */
  pointer-events: none; /* Blockiert keine Hover-Ereignisse */
}

h3.hover-fokus:hover span.normal {
  opacity: 0;
}

h3.hover-fokus:hover span.hover {
  opacity: 1;
}

.hover-fokus h4 {
  margin-bottom: 0rem;
  color: #F2BEBD;
  font-size: clamp(1.2rem, 2vw, 2.5rem);
}

.separator {
    margin: 0 10px; /* Abstand links und rechts vom Strich */
}

.hand {
  position: absolute;
  width: 25%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.hand-left {
  left: 0;
}

.hand-right {
  right: 0;
}

.hand1 { top: 40.6%; left: -30px; transform: rotate(15deg); }
.hand2 { top: 50%; right: 0px; transform: rotate(0deg); }
.hand3 { top: 62.5%; left: -10px; transform: rotate(-15deg); }
.hand4 { top: 71.9%; right: 0px; transform: rotate(0deg); }
.hand5 { top: 81.3%; left: -10px; transform: rotate(5deg); }


/* --- Section Reel --- */
#reel {
  background-color: var(--darkvader-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 0px 0px 0px;
  box-sizing: border-box;
  overflow-y: none; /* falls Inhalt zu groß */

  /* Ein Hintergrund: */
  background-image: url("img/belichtungsmesser.png");
  background-repeat: no-repeat;
  background-position: left 50px;
  background-size: 60% auto;
  background-attachment: scroll;
}

#reel h1 {
  color: var(--neutralgrey-color);
}

.reel-video-container {
  width: 80%;
  height: auto;        
  overflow: hidden;
  margin-top: 200px;
  position: relative;
  margin-bottom: 200px;
}

.reel-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-text {
  max-width: 500px;
  margin: 2rem auto;
  padding: 0 20px 0 20px;
  flex: 1 1 300px; /* flexibel, aber min 300px */
  margin-bottom: 200px; /* Abstand nach unten */
}

.reel-text h3 {
  color: var(--gialloyellow-color);
  margin-bottom: 3rem;
  margin-top: 3rem;
  text-align: left;
}

.reel-text p {
  color: #ccc;
}

.reel-content-section {
  margin-top: 100px;
}

.reel-content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap; /* wichtig für kleinere Bildschirme */
}

.arm-image {
  flex: 0 0 auto; /* Bild bleibt eigenständig */
  width: 30%;      /* 30% der Containerbreite */
  height: auto;
  object-fit: contain;
}


/* --- Section Wir --- */
#about {
  background-color: var(--neutralgrey-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 0px 20px;
  box-sizing: border-box;
  overflow-y: none; /* falls Inhalt zu groß */

  /* zwei Hintergründe: */
  background-image: url("img/lampe.png"), url("img/pattern.jpg");
  background-repeat: no-repeat, repeat;
  background-position: right 100px, center;
  background-size: 30% auto, 300px 300px;
  background-attachment: scroll, scroll;
}

#about h1 {
  color: var(--audreyblush-color);
  margin-bottom: 3rem;
}

.about-text {
  display: flex;
  gap: 40px;
  justify-content: center;
  text-align: left;
  margin-bottom: 50px;
  max-width: 600px;
  margin: 0 auto;
}

.about-column {
  flex: 1;
}

.about-column p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.about-image-container {
  text-align: center;
}

.about-image-container img {
  max-width: 100%;
  height: auto;
}

img.fullscreen {
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  margin-left: calc(50% - 50vw);
}



/* --- Section Kontakt --- */
section.kontakt-section {
display: block;         /* Kein Flex hier */
font-size: 1rem;        /* Normale Schriftgröße */
min-height: auto;       /* Keine erzwungene Höhe */
padding-top: 5rem;
}

.kontakt-section {
  background-color: var(--darkvader-color);
  position: relative;
  overflow: hidden;
}

.kontakt-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

/* Linke Spalte */
.kontakt-links {
  max-width: 350px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.kontakt-links p {
  margin: 6px 0;
}

.kontakt-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.kontakt-links a:hover {
  color: #f8bcbc;
}

/* Rechte Spalte */
.kontakt-rechts {
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  color: #f8bcbc;
  font-size: 22px;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.social-icons a:hover {
  opacity: 0.7;
}

.kontakt-links-rechts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: 600;
}

.kontakt-links-rechts a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.kontakt-links-rechts a:hover {
  color: #f8bcbc;
}

/* Logo am unteren Rand */
.logo-hintergrund {
  width: 100%;
  margin-top: 10px;
  margin-bottom: -5px;
}

/* --- Footer --- */
.footer {
  color: #f8bcbc;
  font-weight: 600;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
.lightbox-content {
  background: #fff;
  max-width: 800px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 80%;
}
.lightbox .close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* --- Buttons --- */
.oval-button {
  font-family: 'Apparat', Arial, sans-serif;;
  color: var(--darkvader-color);               
  border: none;               
  border-radius: 10px;         
  padding: 8px 15px;   
  font-size: clamp(1rem, 1.11vw, 2rem);
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
  text-transform: uppercase;
}

.oval-button:hover {
  background-color: var(--gialloyellow-color);
}

.read-more {
  display: inline-block;
  background: none;
  border: none;
  color: var(--darkvader-color);
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  margin-top: 10px;
}

.fixed-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #FEFF7A;
  color: #000;
  font-weight: bold;
  text-transform: lowercase;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  font-size: clamp(1rem, 1.11vw, 2rem);
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: background-color 0.3s, transform 0.2s;
}

.fixed-button:hover {
  background-color: #F2BEBD;
  transform: translateY(-50%) scale(1.05);
}

/* --- Scroll Container - Logos --- */
.scroll-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;            
  display: flex;
  justify-content: center; 
  align-items: center;
  overflow: hidden;
  z-index: 999;          
  padding-bottom: 10px;   
}

.scroll-container {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.scroll-container img {
  max-height: 8vh;
  max-width: 20vw;
  height: auto;
  width: auto;
  margin-right: 2vw;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
  object-fit: contain;
}

/* Cookie Consent Banner */
#cookie-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9998;
  backdrop-filter: blur(4px);
}
#cookie-overlay.show { display: block; }

#cookie-popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--darkvader-color);
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  padding: 32px;
  text-align: center;
  color: var(--white-color);
}
#cookie-popup.show { display: block; }

#cookie-popup h3 { margin: 0 0 16px; font-size: 1.4em; }
#cookie-popup p { margin: 0 0 24px; font-size: 15px; line-height: 1.5; color: var(--white-color); }

#cookie-popup .buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#cookie-popup button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  min-width: 120px;
}
#cookie-popup .reject {
  background: var(--white-color);
  color: var(--nocturneroyale-color);
}
#cookie-popup .accept {
  background: var(--gialloyellow-color);
  color: var(--darkvader-color);
}

#cookie-popup a { color: var(--audreyblush-color); text-decoration: underline; }

/* Responsive */
@media (max-width: 480px) {
  #cookie-popup { padding: 24px; }
  #cookie-popup .buttons { flex-direction: column; }
  #cookie-popup button { width: 100%; }
}



/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    display: none;
  }

  h1 {
    font-size: 5rem;
  }

  .site-logo {
    width: 65vw;
  }

  #hero h2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  #hero {
    background-size: 80% auto, 40% auto, 300px 300px;
  }

  #fokus {
    background-size: 80% auto, 300px 300px;
    padding: 140px 20px 0px 20px;
  }

  .hand {
    width: 38%;
  }

  #kunden {
    background-position: bottom 2% left, top 50px right;
    background-size: 52% auto, 35% auto;
  }

  .reel-content-container {
    flex-direction: column;
    align-items: center;
  }

  .reel-text {
      padding-right: 0;
      margin: 0;
  }

  .arm-image {
      width: 200px;
      margin-top: 20px;
  }

  .reel-video-container {
    margin-top: 50px;
    margin-bottom: 100px;
  }

  .kontakt-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .kontakt-rechts, .kontakt-links {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}

/* große Desktops */
@media (min-width: 1980px) { 
  .pfeil {
      width: 60px;
      height: 60px;
  }

  .about-text {
    max-width: 800px; 
  }

  #fokus {
    background-size: 40% auto, 300px 300px;
  }
  .fokus-container {
    max-width: 800px;
  }
  #fokus h2 {
    margin-bottom: 11rem;
    margin-top: 15rem;
  }
  .hand {
    width: 20%;
  }
  .hand1 { top: 20.6%; }
  .hand2 { top: 34%; }
  .hand3 { top: 52.5%; }
  .hand4 { top: 71.9%; }
  .hand5 { top: 75.3%; }

}