/* ================= FONTS ================= */

@font-face {
  font-family: "DM Serif Display";
  src: url("../assets/fonts/dm-serif-display-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ================= TYPOGRAPHY (GLOBAL HEADINGS) ================= */

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

/* ================= RESET ================= */

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

html {
  scroll-behavior: auto;
}

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.6;
  background: #0b1e2d;
  overflow-x: hidden;
}

/* ================= CONTAINER ================= */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  position: relative;
  background: url("../images/hero.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 33, 0.2) 0%,
    rgba(7, 20, 33, 0.45) 100%
  );
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content {
  position: absolute;
  z-index: 9;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -33%);
  width: 85%;
  text-align: center;
}

.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #071421;
}

.hero-subtitle {
  margin-top: 0.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.04em;
  color: rgba(255, 248, 222, 0.75);
}

/* ================= LANGUAGE SWITCH ================= */

.nav-lang {
  position: absolute;
  top: 40px;
  right: 5%;
  z-index: 10;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.nav-lang a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-lang a.active {
  font-weight: 700;
  color: #ffffff;
}

.nav-lang a + a::before {
  content: " | ";
  color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  background: rgba(7, 20, 33, 0.75);
  backdrop-filter: blur(3px);
}

.navbar.scrolled {
  background: #071421;
  backdrop-filter: none;
}

.nav-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-left {
  position: absolute;
  left: 0;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(255, 248, 222, 0.88);
  position: absolute;
  left: 5%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  position: relative;
  display: inline-block; 
  padding-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  z-index: 6;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ================= SECTIONS ================= */

.section {
  padding: 140px 0;
}

.section h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 60px;
}

.section p.press-subtitle {
  margin-top: -50px;
  margin-bottom: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 300;
}

/* ================= LOGELINE ================= */

#logline {
  scroll-margin-top: 160px; /* Fixe Navbar-Höhe */
}

.logline {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;      
  justify-content: center;
  padding-bottom: 14vh;       
  overflow: hidden;
}

.logline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Logline-bg.jpg") center center / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.05);     
  z-index: 0;
}

.logline::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(7, 20, 33, 0.65),
      rgba(7, 20, 33, 0.65)
    ),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.6) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.logline .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.logline-wrapper {
  max-width: 680px;      
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.logline-wrapper::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 36px;
}

.logline-text {
  font-size: 16px;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.9);
}

.logline-text p + p {
  margin-top: 1.6rem;
}

/* ================= GRADIENT AREA ================= */

.gradient-area {
  background: linear-gradient(
    180deg,
    #071421 0%,
    #0f2a3a 35%,
    #6a4a1f 70%,
    #7f5a27 100%
  );
}

/* ================= GALLERY ================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  display: block;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1 !important; 
  overflow: hidden;
  border-radius: 4px;
  background: #071421;
}

.gallery-item a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-col.d-none {
  display: none !important;
}

/* ================= TRAILER ================= */

.trailer-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.trailer-wrapper iframe,
.trailer-wrapper .yt-consent {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-consent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.7);
  cursor: pointer;
  text-align: center;
  padding: 20px;
}

.yt-load {
  margin-top: 15px;
  padding: 10px 20px;
  border: 1px solid #fff;
}

/* ================= TRAILER TEASER ================= */

.teaser-card {
  position: relative;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.teaser-bg {
  position: absolute;
  inset: 0;
  background: url("../images/Still-1.jpg") center center / cover no-repeat;
  filter: blur(3px) brightness(0.7); 
  transform: scale(1.1);
  z-index: 1;
}

.teaser-overlay {
  position: absolute; 
  inset: 0;           
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(to bottom, 
                rgba(7, 20, 33, 0.2) 0%, 
                rgba(7, 20, 33, 0.6) 50%, 
                rgba(7, 20, 33, 0.9) 100%);
}

.teaser-content {
  max-width: 550px;
  z-index: 3;
}

.teaser-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem; 
  text-transform: uppercase;
  letter-spacing: 0.3em; 
  color: rgba(255, 248, 222, 0.5);
  margin-bottom: 1rem;
}

.teaser-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem); 
  color: #fff8de;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-style: italic; 
}

.teaser-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.95rem; 
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.teaser-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 248, 222, 0.2);
  margin: 2rem auto 0;
}

/* ================= SYNOPSIS ================= */

.synopsis-section {
  padding-top: 90px;
  padding-bottom: 40px;
}

.synopsis-container {
  margin-bottom: 3rem;
}

.synopsis-title {
  margin-bottom: 30px;
}

.synopsis-row {
  align-items: flex-start;
}

.synopsis-left {
  padding-right: 2rem;
}

.synopsis-text {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
}

.synopsis-quote-wrapper {
  margin-top: 3rem;
}

.synopsis-right .image-stack {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Spezifischer Override für Synopsis, um das Quadrat zu entfernen */
.synopsis-right .gallery-item {
  aspect-ratio: auto !important; 
}

.synopsis-right .gallery-item img {
  width: 100% !important;
  height: auto !important; /* Erlaubt die natürliche Höhe des Bildes */
  object-fit: contain !important; /* Zeigt das komplette Originalbild */
}

#synopsis .regie-title {
  margin-bottom: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

#synopsis .director-quote {
  position: relative;
  margin: 0;
  padding: 26px 0 0 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
}

#synopsis .director-quote::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: -34px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 160px;
  line-height: 1;
  color: rgba(255, 248, 222, 0.10);
  pointer-events: none;
}

#synopsis .director-quote::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 110px;
  height: 1px;
  background: rgba(255, 248, 222, 0.22);
}

#synopsis .director-quote footer {
  margin-top: 14px;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ================= CAST ================= */

#cast .cast-grid:not(.row) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#cast .cast-member,
#cast .cast-card {
  padding: 10px 15px 30px;
  text-align: center;
}

#cast .cast-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 6px;
}

#cast .cast-name,
#cast .cast-card h3 {
  font-size: 1.6rem;
  margin: 12px 0 6px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: rgba(255, 248, 222, 0.92);
}

#cast .cast-role {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 248, 222, 0.65);
  margin-bottom: 12px;
}

#cast .cast-description,
#cast .cast-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.75);
}

/* ================= CREW ================= */

#crew .crew-member {
  transition: transform 0.3s ease;
}

#crew .crew-member:hover {
  transform: translateY(-6px);
}

#crew .crew-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

#crew .crew-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

#crew .crew-member:hover .crew-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

#crew .crew-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  line-height: 1.2;
  color: rgba(255, 248, 222, 0.92);
}

#crew .crew-role {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
  color: rgba(255, 248, 222, 0.65);
}

/* ================= SPECS ================= */

#specs .specs-grid {
  row-gap: 2.5rem;
}

#specs .spec-item {
  text-align: center;
}

#specs .spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.4rem;
  color: rgba(255, 248, 222, 0.65);
}

#specs .spec-value {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 248, 222, 0.92);
}

/* ================= PRESSE (UPDATED: ULTRA-KOMPAKT & ALIGNED) ================= */

.press-card {
  background: rgba(255, 248, 222, 0.03);
  border: 1px solid rgba(255, 248, 222, 0.1);
  padding: 1.25rem 1.5rem; /* Kompaktes Padding */
  border-radius: 4px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  background: rgba(255, 248, 222, 0.06);
  border-color: rgba(255, 248, 222, 0.25);
  transform: translateY(-3px);
}

.press-card-content h4 {
  color: #fff8de;
  margin-bottom: 0.25rem;
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.press-card-content p {
  color: rgba(255, 248, 222, 0.5);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* --- Sprach-Zeilen (Kompakt) --- */
.press-lang-row {
  display: flex;
  align-items: center;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 248, 222, 0.1);
}

.press-card-content .press-lang-row:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.lang-tag {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 248, 222, 0.5);
  border: 1px solid rgba(255, 248, 222, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
  margin-right: 12px;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.press-actions {
  display: flex;
  gap: 15px;
  flex-grow: 1;
  align-items: center;
}

/* Action Links */
.btn-press-action {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none !important;
  color: #fff8de;
  position: relative;
  transition: opacity 0.3s;
}

/* KORREKTUR: Fixe Breite für den ERSTEN Button (Anzeigen/View),
   damit der zweite Button (Download) immer an der gleichen Stelle beginnt.
   Wir schließen .secondary (Download) dabei aus. */
.btn-press-action:not(.secondary) {
  min-width: 80px; /* Breite für "Anzeigen" reservieren */
  display: inline-block; 
}

.btn-press-action::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff8de;
  transition: width 0.3s ease;
}

.btn-press-action:hover {
  opacity: 1;
}

.btn-press-action:hover::after {
  width: 100%;
}

.btn-press-action.secondary {
  color: rgba(255, 248, 222, 0.6);
}

.btn-press-action.secondary::after {
  background: rgba(255, 248, 222, 0.6);
}

.file-info {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 248, 222, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: auto;
}

@media (max-width: 576px) {
  .press-lang-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .press-actions {
    width: 100%;
    gap: 15px;
  }
  .file-info {
    width: 100%;
    margin-left: 0;
  }
}

/* ================= CONTACT ================= */

#contact .custom-link {
  color: rgba(255, 248, 222, 0.88);
  text-decoration: none;
}

#contact .custom-link:hover {
  text-decoration: underline;
  color: rgba(255, 248, 222, 0.95);
}

/* ================= LEGAL SECTION ================= */

.section.legal {
  padding: 120px 0;
  text-align: left;
}

.section.legal .container,
.section.legal .row,
.section.legal .col-lg-8 {
  text-align: left;
}

.section.legal h1 {
  font-size: 2.5rem;        
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: left;
}

.section.legal h2 {
  font-size: 2rem;          
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: left;
}

.section.legal p {
  font-size: 1rem;          
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.section.legal * {
  text-align: left !important;
}

body:has(.section.legal) .navbar {
  background: rgba(7, 20, 33, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body:has(.section.legal) .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

body:has(.section.legal) .nav-links a:hover {
  color: #ffffff;
}

/* ================= BUTTONS / UI ================= */

.load-more-container {
  margin-top: 40px;
  width: 100%;
}

.btn-load-more {
  background: transparent;
  color: #fff8de;
  border: 1px solid rgba(255, 248, 222, 0.3);
  padding: 12px 30px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-load-more:hover {
  background: #fff8de;
  color: #071421;
  border-color: #fff8de;
}

#backToTop {
  display: none;        
  position: fixed;      
  bottom: 30px;         
  right: 30px;          
  z-index: 9999;        
  border: none;
  outline: none;
  background-color: #7f5a27; 
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  transition: opacity 0.3s;
}

#backToTop:hover {
  background-color: #6a4a1f;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #000000;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.2;
}

.site-footer .footer-links {
  display: inline-flex;
  align-items: baseline;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.footer-brand-link {
  color: rgba(255, 255, 255, 0.888);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer .custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.888);
  transition: color 0.3s ease;
  line-height: 1.2;
}

.site-footer .custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s ease;
  background: currentColor;
}

.site-footer .custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.site-footer .custom-link:hover {
  color: #ffffff;
}

/* =========================================================
   MEDIA QUERIES (DESKTOP OVERRIDES)
========================================================= */

@media (min-width: 992px) {
  .navbar .nav-lang {
    display: none !important;
  }
  
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  
  .nav-links li:first-child {
    display: none !important;
  }
  
  .gallery-item.featured {
    aspect-ratio: 2 / 1 !important; 
  }
}

/* =========================================================
   MEDIA QUERIES (TABLET & MOBILE NAVIGATION)
========================================================= */

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section {
    padding: 100px 0;
  }

  #synopsis .director-quote {
    max-width: 100%;
    padding-top: 22px;
  }

  #synopsis .director-quote::before {
    left: -6px;
    top: -30px;
    font-size: 130px;
  }

  /* Desktop-Sprachwechsler verstecken */
  .hero .nav-lang:not(.nav-lang--mobile) {
    display: none !important;
  }

  /* Navbar Fixed Container */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    transform: none !important;
    background: #071421 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    height: 70px !important;
    overflow: visible !important;
  }

  .nav-left {
    display: none !important;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 5%;
  }

  /* Mobile Burger Menu (Links) */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    order: 1;
    z-index: 10005 !important;
    position: absolute !important;
    top: 35px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    left: 20px !important;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }

  /* Burger zu "X" Animation */
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile Sprache (Rechts) */
  .nav-lang--mobile {
    display: flex !important;
    order: 2;
    z-index: 10005 !important;
    position: absolute !important;
    top: 35px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    right: 20px !important;
  }

  /* Fullscreen Nav Overlay */
  .nav-links {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(7, 20, 33, 0.98) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: 90px !important;
    overflow-y: auto !important;
    gap: 8px !important;
    margin: 0 !important;
    z-index: 10001 !important;
    
    /* Animation Values */
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links a {
    display: block;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 24px !important;
    padding: 8px 0 !important;
    border: none !important;
  }

  /* Spezifische Korrektur Home-Button */
  .nav-links li:first-child {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .nav-links li:first-child a {
    font-size: 30px !important;
    font-weight: 600 !important;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #cast .cast-grid:not(.row) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MEDIA QUERIES (MOBILE SMALL)
========================================================= */

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .logline::before {
    background-position: 65% center;
  }

  #cast .cast-grid:not(.row) {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #cast .cast-name,
  #cast .cast-card h3 {
    font-size: 1.4rem;
  }

  #crew .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  #crew .col-12,
  #crew .col-md-6,
  #crew .col-lg-3 {
    width: 100%;
    padding: 0;
  }

  #crew .crew-member:hover {
    transform: none;
  }

  #crew .crew-image {
    aspect-ratio: 3 / 4;
  }

  #crew .crew-name {
    font-size: 0.95rem;
  }

  #crew .crew-role {
    font-size: 0.65rem;
  }
}