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

/* =====================
   BASE
===================== */
body, p, li, span, input, textarea {
  font-family: "Nunito", sans-serif;
  font-weight: 200;
  line-height: 1.6;
  color: #999;
  background: #02121f;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* =====================
   HEADER & NAV
===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 150px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  background: #162c44;
  z-index: 20;
  transition: background 0.5s ease;
}

.header.scrolled {
  background: #02121f;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.nav-left { display: flex; gap: 20px; }
.nav-right { display: flex; gap: 24px; }
.nav-center { position: absolute; left: 50%; transform: translateX(-50%); }
.logo { width: clamp(250px, 19vw, 320px); cursor: pointer; }

@media (min-width: 769px) {
  .nav-left { margin-left: 60px; }
  .nav-right { margin-right: 60px; }
}

/* =====================
   NAV LINKS
===================== */
.nav a,
.mobile-nav-inner a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.nav a:hover,
.mobile-nav-inner a:hover {
  color: #ffffff;
}

/* =====================
   ICONS
===================== */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-right a.icon svg,
.mobile-social a.icon svg {
  fill: #ffffff;
  width: 22px;
  height: 22px;
  transition: fill 0.3s ease;
}

.nav-right a.icon.linkedin svg,
.mobile-social a.icon.linkedin svg {
  width: 20px;
  height: 20px;
}

.nav-right a.icon:hover svg,
.mobile-social a.icon:hover svg {
  fill: #ffffff;
}

/* =====================
   BURGER
===================== */
.burger {
  display: none; /* standardmäßig unsichtbar */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 40; /* über Hero & Footer */
}

.burger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) { 
   transform: rotate(45deg) translateY(14px);
}

.burger.open span:nth-child(2) { 
  opacity: 0; 
}

.burger.open span:nth-child(3) { 
   transform: rotate(-45deg) translateY(-14px);
}

/* =====================
   HERO VIDEO
===================== */
.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 90vh;
  background: #02121f;
  z-index: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-out;
}

.hero-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 2;
  pointer-events: none;
}

/* =====================
   SCROLL ARROW
===================== */
.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 4;
}

.scroll-down-arrow::before,
.scroll-down-arrow::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #fff;
  top: 0;
  left: 50%;
  transform-origin: bottom center;
}

.scroll-down-arrow::before { transform: translateX(-50%) rotate(45deg); }
.scroll-down-arrow::after  { transform: translateX(-50%) rotate(-45deg); }

/* =====================
   CONTENT LAYER
===================== */
.content-layer {
  position: relative;
  background: #02121f;
  z-index: 2;
  padding: 80px 40px;
}

body.home .content-layer {
  margin-top: 100vh; /* Platz für fixierten Hero */
  min-height: calc(100vh + 100px);
}
/* Unterseiten: KEIN Hero-Abstand */
body:not(.home) .content-layer {
  margin-top: 0;
  min-height: auto;
}



/* =====================
   TERMS PAGE
===================== */
/* Datenschutzerklärung */
.terms-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
  color: #999;
  font-family: "Nunito", sans-serif;
}

.imprint-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #eee;
  margin-top: 100px;
  text-align: center;
  font-weight: 300;
}

.terms-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #999;
  margin-top: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.terms-section p {
  font-size: 16px;
  margin: 10px 0 20px 0;
  line-height: 1.6;
}

.terms-section a {
  color: #999;
  text-decoration: underline;
}




/* =====================
   CONTACT PAGE
===================== */
.contact-page {
  padding-top: 150px; /* Desktop Headerhöhe */
}

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #eee;
  margin-top: 50px;
  text-align: center;
  font-weight: 300;
}

.contact-text {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 30px 0 20px 0;
}

.contact-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #eee;
  text-align: center;
  margin: 30px 0 1px 0;
  font-weight: 300;
}

.contact-title {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin: 0 0 5px 0;
}

.contact-info,
.contact-email a {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 2px 0;
 text-decoration: none;
}

.contact-email a:hover {
  text-decoration: none;
  color: #fff;   
}

.contact-tel {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: #eee;
  text-align: center;
  margin: 30px 0 0 0;
  letter-spacing: 0.05em;
}

.contact-tel a {
  color: #eee;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
}

.contact-tel a:hover {
  color: #eee; /* optional Hover-Farbe */
}



/* =====================
   CONTACT FORM
===================== */
.contact-form-section {
  max-width: 600px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

/* =====================
   FORM INPUTS
===================== */
.modules .form .form-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}

/* Textfelder */
.modules .form input,
.modules .form textarea {
  width: 100%;
  background: #162c44;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 6px 15px;
  font-size: 16px;
  color: #eee;
  outline: none;
  transition: border 0.3s ease;
}

/* Fehlerzustand Inputs */
.form-input.error input,
.form-input.error textarea {
  border-color: #c00;
}

/* =====================
   FEHLERZUSTAND CHECKBOX
===================== */
.form-input.error .checkbox-wrapper .checkmark {
  border-color: #c00;
}


/* =====================
   CHECKBOX (OPT-IN)
===================== */

/* Text der Opt-in-Zeile kleiner */
.checkbox-text {
  font-size: 13px; /* kleiner als Standard, z.B. 13px */
  line-height: 1.4;
  color: #999;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Echte Checkbox ausblenden */
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}

/* Custom Haken */
.checkmark {
  width: 18px;
  height: 18px;
  background: #162c44;
  border: 1px solid #555;
  display: inline-block;
}

/* Haken nach Aktivierung */
.checkbox-wrapper input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #eee;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Linkfarbe */
a {
  color: #999;
  text-decoration: underline;
}

a:hover {
  color: #555;
}




/* =====================
   SUBMIT BUTTON
===================== */
.submit-button {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: #999;
  padding: 10px 30px;
  height: 40px;
  border: 1px solid #999;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;     /* Abstand nach oben */
  letter-spacing: 0.05em;
}

/* Text im Button – KEINE pointer-events */
.submit-button .submit-text {
  font-family: inherit;
  color: inherit; /* wichtig, damit Farbe vom Button geerbt wird */
  pointer-events: none; /* Klick bleibt auf dem Button */
}

/* Hover */
.submit-button:hover,
.submit-button:hover .submit-text {
  color: #fff;
  border-color: #fff; /* Border für Parent */
}


/* =====================
   SUCCESS MESSAGE
===================== */
.contact-form-sent {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 200px;
  padding-top: 60px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #eee;
}

/* =====================
   FORM ERRORS AUSBLENDEN
===================== */
.modules .form .form-error,
.js-form-error {
  display: none !important;
}



/* Hover */
.submit-button:hover {
  color: #fff;
  border-color: #fff;
}


/* =====================
   KONTAKT BUTTON (SHOWREEL)
===================== */
.contact-button-container {
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  margin-top: 50px;        /* Abstand nach oben */
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: #999;
  text-decoration: none;  /* keine Unterstreichung */
  padding: 10px 30px;
  border: 1px solid #999;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.contact-button:hover {
  color: #fff;
  border-color: #fff;
}



/* =====================
   SHOWREEL
===================== */
.showreel-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  margin: 0 auto 20px auto;
  color: #eee;
  font-weight: 300;
  text-align: center;
}

.showreel-frame {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.showreel-video {
  display: block;
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;   /* 🔑 NICHT contain */
  margin: 20px 0 40px;
  border: none;
}

.showreel-video:focus {
  outline: none;
}

.showreel-video::-webkit-media-controls {
  outline: none;
}

.showreel-text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}



/* =====================
   KUNDEN
===================== */
.kunden-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kunden-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 40px;
  margin-top: 60px;
  color: #eee;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.kunden-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 20px;
  width: 70%;
  max-width: 800px;
  aspect-ratio: 5 / 4;
}

.kunden-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 200px;
  max-height: 200px;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  width: 100%;
  padding: 30px 0;
  background: #02121f;
  display: flex;
  justify-content: center;
  position: relative; /* oder fixed wenn nötig */
  z-index: 10; 
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 260px; /* ← schmal */
  width: 100%;
}

.footer-icons {
  display: flex;
  gap: 30px;
}

.footer-center {
  font-size: 14px;
  color: #41526D;
  text-align: center;
}


.footer-center #footer-year {
  color: #41526D;
  font-size: 14px;
}


.footer-icons a.icon svg,
.mobile-social a.icon svg {
  
  fill: #2D394B;
  width: 22px;
  height: 22px;
  transition: fill 0.3s ease;
}

.footer-icons a.icon.linkedin svg,
.mobile-social a.icon.linkedin svg {
  
  width: 20px;
  height: 20px;
}

.footer-icons a.icon:hover svg,
.mobile-social a.icon:hover svg {
  fill: #41526D;
}


.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: #2D394B;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #41526D;
}



/* =====================
   MOBILE NAV
===================== */
.mobile-nav {
  position: fixed;
  top: 80px;
  width: 100%;
  height: 0;
  background: #162c44;
  overflow: hidden;
  z-index: 45;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 40px;
  padding-bottom: 30px; /* ← Luft nach unten */

  opacity: 0;
  pointer-events: none;
  transition: height 0.5s ease, opacity 0.5s ease;
}


.mobile-nav.open {
  height: 45vh;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-social {
  margin-top: auto;
  display: flex;
  gap: 20px;
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
  max-width: 800px;
  margin: 40px auto 100px auto;
  padding-top: 150px; /* Desktop Headerhöhe */
  color: #999;
  font-family: "Nunito", sans-serif;
  text-align: center; /* NEU */
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;   /* ← DAS ist der Mobile-Rand */
}


/* =====================
   IMAGE
===================== */
.about-image {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  padding-top: 50px;
}

.about-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}

/* =====================
   HEADINGS & TEXT
===================== */
.about-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 60px;
  color: #eee;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.about-text {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 10px 0 20px 0;

}


/* =====================
   COLUMNS
===================== */
.about-columns {
  display: flex;
  justify-content: center; /* NEU */
  gap: 40px;
  margin-top: 40px;
}


/* Spalten */
.about-column {
  width: 400px;
}

/* Textblöcke */
.about-block {
  max-width: 350px;
  margin-bottom: 40px;
}

.about-block h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 60px;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.about-block p {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 10px 0 20px 0;
}

/* kleine Liste im Service-Block */
.about-list {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

/* =====================
   ARBEITEN
===================== */

.arbeiten-section {
  padding-top: 150px; /* Desktop Headerhöhe */
}



/* Grid */
.arbeiten-grid {
  padding-top: 100px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 6px;
}


/* Item */
.arbeiten-item {
  position: relative;
  overflow: hidden;
}

.arbeiten-item a {
  display: block;
  text-decoration: none; 
  color: inherit;        
}

.arbeiten-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* =====================
   SHOWREEL INFO & KUNDEN
===================== */

.showreel-section {
  padding-top: 150px; /* Desktop Headerhöhe */
}

.showreel-info {
  padding-top: 10px;
  padding-bottom: 80px; /* Abstand zum Footer */
}

.showreel-title {
  padding-top: 80px;

}

.showreel-info .text-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;

  margin-top: 60px;
  color: #eee;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.showreel-info .text-block p {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 10px 0 20px 0;

}

.showreel-info .section-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #eee;
  font-weight: 300;
  margin-bottom: 10px;
}

.showreel-info .showreel-partners,
.showreel-info .showreel-clients {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 10px 0 20px 0;
  
}

.showreel-info .showreel-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: #eee;
  font-weight: 300;
  
}

  .showreel-info .text-block p,
  .showreel-info .showreel-partners,
  .showreel-info .showreel-clients,
  .showreel-info .section-subtitle,
  .showreel-info .showreel-title {
    text-align: center;
  }

/* =====================
   SHOWREEL VORSCHAU GRID
===================== */
.showreel-preview-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 15px;
}

/* Vorschau-Grid: Hover-Effekt nur Desktop */
.showreel-preview-grid .arbeiten-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.showreel-preview-grid .arbeiten-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Overlay */
.showreel-preview-grid .arbeiten-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 31, 45, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}





/* =====================
   RESPONSIVE
===================== */

/* Hover nur Desktop */
@media (hover: hover) and (pointer: fine) {
  .showreel-preview-grid .arbeiten-item:hover .overlay {
    opacity: 1;
  }
}

.showreel-preview-grid .arbeiten-item .overlay h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: #eee;
  text-align: center;
  font-weight: 300;
  margin: 0;
}


@media (min-width: 1001px) {
  .mobile-title {
    display: none; /* Mobile-Text ausblenden */
  }

  .arbeiten-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 31, 45, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .arbeiten-item:hover .overlay {
    opacity: 1;
  }

  .arbeiten-item .overlay h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    color: #eee;
    text-align: center;
    font-weight: 300;
  }

  
}


@media (max-width: 1000px) {
  .header { height: 80px; padding: 0 20px; }

  .burger { display: flex; }

  .nav-left,
  .nav-right { display: none; }

  .content-layer { padding-left: 0; padding-right: 0; }
  .contact-page { padding-top: 80px; }
  .about-section { padding-top: 80px; }
  .showreel-frame,
  .showreel-video { width: 100%; max-width: 100%; left: 0; transform: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .footer-left,
  .footer-right { justify-content: center; }

  .kunden-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    width: 90%;
    max-width: 1200px;
    gap: 16px;
    justify-items: center;
    align-items: center;
  }

  .kunden-grid img {
    width: 100%;
    height: 100%;
    max-width: 227px;
    max-height: 227px;
    object-fit: cover;
  }


  .form-input.error input,
  .form-input.error textarea {
    border: 1px solid #c00;
  }

  .about-columns {
    flex-direction: column;
    gap: 20px;
  }

  .about-column {
    width: 100%;
  }

  .about-block {
    max-width: 100%;
  }

  .about-image img {
    width: 280px;
    height: 280px;
  }


  .contact-intro,
  .contact-form-section,
  .about-section,
  .showreel-text,
  .contact-info,
  .contact-text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .arbeiten-section {
    padding-top: 20px;
  }

   .arbeiten-item .overlay {
    display: none; /* Overlay auf Mobile nicht nutzen */
  }

  .mobile-title {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: #eee;
    text-align: center;
    margin-bottom: 10px; /* Abstand zum Bild */
    letter-spacing: 0.05em;
    font-weight: 300;
  }

  .arbeiten-item {
    display: flex;
    flex-direction: column; /* Text über Bild */
    align-items: center;
    margin-bottom: 30px;
  }

  .arbeiten-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

 .showreel-section {
    padding-top: 80px; /* weniger Abstand oben */
  }

  .showreel-preview-grid .arbeiten-item {
    display: block; /* Flex vermeiden */
    width: 100%;
    margin-bottom: 0; /* WICHTIG: Abstand nur durch grid-gap */
  }

  .showreel-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* horizontal + vertikal */
  }

  .showreel-preview-grid .arbeiten-item img {
    width: 100%;
    height: auto; /* Höhe proportional, gleichmäßig im Grid */
    display: block;
    object-fit: cover;
  }
  .showreel-title {
    padding-top: 20px;

}
  
}

/* =====================
   COOKIE BANNER
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 14px 24px;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cookie-text,
.cookie-banner button {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cookie-banner button:hover,
.cookie-text:hover {
  color: #555;
}



/* =====================
   MOBILE NAV ICON COLOR FIX
===================== */
.mobile-nav .mobile-social a.icon svg {
  fill: #eee;
}




/* ganz unten */
.showreel-play-button {
  display: none !important;
}
