body {
    background-color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 21px;
    line-height: 1.5;
    color: #000; /* FIX */
    margin: 0;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -1rem; 

  padding: 0.5rem 1rem;
  color: #E5D4BA;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;

  background: url("img/bg-distressed-red-badge.webp") no-repeat center/cover;

  transform: rotate(-2deg);
}

.hero-content {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;

  text-align: center;
  font-family: "Bebas Neue", sans-serif;
}


.hero-content h1 {
  color: #E5D4BA;
  padding: 1rem 2rem;
  line-height: 0.9;
  transform: rotate(-1deg);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hero-content h1 span {
  font-size: 0.4em;
  display: block;
  margin-top: 0.3rem;
}

.claim {
  position: relative;
  z-index: 1;
  color: #8A0303; 
  padding: 1.2rem 1.5rem;
  transform: rotate(-1deg);
  display: inline-block;
  margin-top: -10px;
}

.sub {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0.5rem 1.5rem;
  transform: rotate(-1deg);
  display: inline-block;
  margin-top: -15px;
  color: #E5D4BA;
}


.hero-content h1::before,
.claim::before,
.sub::before {
  content: "";
  position: absolute;
  inset: -10rem; 

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  z-index: -1;
}


.hero-content h1::before {
  background-image: url("img/bg-distressed-black.webp");
  transform: rotate(-1deg);
}

.claim::before {
  background-image: url("img/bg-distressed-beige.webp");
  transform: rotate(-1deg);
}

.sub::before {
  background-image: url("img/bg-distressed-red.webp");
  transform: rotate(-1deg);
}


h1 {
    line-height: 1;
    color: #E5D4BA;
}

h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 120px;
    line-height: 1;
    padding: 3rem 2rem 2rem 2rem;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

p {
    text-align: justify;
    hyphens: auto;
    padding: 1rem 2rem;
}

p strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    line-height: 1.2;
}

/* LANGUAGE SWITCH */

.language-switch {
    position: fixed;
    bottom: 20px;
    right: -8px;
    transform: translateY(-50%);

    background: black;
    padding: 12px 10px;

    font-family: 'Bebas Neue', sans-serif;
    z-index: 1000;
}

.language-switch:hover,
.language-switch:focus-within {
    right: 0;
    transition: right 0.5s ease; 
}

.language-switch a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 6px 10px;
    text-align: center;
}

.language-switch a:visited {
    color: white;
}

.language-switch a:hover {
    color: #8A0303;
}

.language-switch a + a {
    border-top: 1px solid white;
}

/* LAYOUT */

.layout {
    display: flex;
    align-items: flex-start;
}

.text {
    max-width: 70ch;
    flex: 2;
}

.image {
    flex: 1;
    position: sticky;
}

.image img {
    width: 80%;
    height: auto;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 1920px) {
    h1 {font-size: 160px;}
    .claim{font-size: 50px;}
    .sub {font-size: 50px;}
    .badge { font-size: 50px; }
    .layout { gap: 200px; }
    .image { top: calc(100vh - 540px - 64px); }
}

@media (max-width: 1440px) {
    h1 {font-size: 90px;}
    .claim{font-size: 30px;}
    .sub {font-size: 30px;}
    .badge { font-size: 50px; }
    .layout { gap: 200px; }
    .image { top: calc(100vh - 540px - 64px); }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        padding: 1rem 0rem;}
     h1 {font-size: 90px;}
    .claim{font-size: 30px;}
    .sub {font-size: 30px;}
    .badge { font-size: 40px; }
    .layout { gap: 50px; }
    .image { top: calc(100vh - 300px - 64px); }
    h2 { font-size: 90px; }
}

@media (max-width: 768px) {
     h1 {font-size: 100px;}
    .claim{font-size: 30px;}
    .sub {font-size: 30px;}
    .badge { font-size: 40px; }
    .layout { gap: 24px; }
    .image { top: calc(100vh - 240px - 64px); }
    h2 { font-size: 70px; }
}

@media (max-width: 480px) {
   .hero-content {
        width: 100%;
        left: 0;
     transform: none;
        padding: 0 ;
  }
   .hero-content h1,
   .claim,
   .sub {
        width: 100%;
        display: block;
        text-align: center;
  }
  .hero-content h1::before,
  .claim::before,
  .sub::before {
        inset: -20px -10px; 
        background-size: contain; 
  }
    h1 {font-size: 70px;}
    .claim {
        font-size: 24px;
        padding: 0.5rem;}
    .sub {
        font-size: 24px;
        padding: 0;}
    .badge { font-size: 24px; }
    .layout { display: block; }
    .image {
        position: static;
        padding: 3rem 2rem 1rem 2rem;}
    h2 { font-size: 50px; }
}

/* FOOTER */

.footer {
  background-color: #fff;              
  border-top: 3px solid #000; 
  margin-top: 8rem;   
  padding: 2rem 0;  
}

.footer-content {
  margin: 0 auto;
  text-align: left;
}

.footer-text {
  line-height: 1;
  font-size: 16px;
  color: #000;
}

.footer-text p {
    padding-top: 0;
    text-align: left;
}

.footer-text strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 2rem;
}

.footer-logos img {
  height: 120px;
  object-fit: contain;
}




.cursor-trail {
  position: absolute;
  pointer-events: none;
  z-index: 9999;

  background-image: url("img/trail.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Touch deaktivieren */
@media (pointer: coarse) {
  .cursor-trail {
    display: none;
  }
}



.escape-hint {
  position: fixed; 
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);

  pointer-events: none;
  z-index: 10000;

  font-family: "Bebas Neue", sans-serif;
  font-size: 40px; 
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.escape-hint.show {
  opacity: 1;
}