/* ! CSS RESET */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ! BASE STYLES */
html {
  font-size: 100%;
}

body {
  font-family: Arial, sans-serif;
  font-size: 1em;
  background: #000;
  color: white;
}

/* ! LAYOUT STRUCTURE (mobile first) */
.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.left img.bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.left img.bg-slide.active {
  opacity: 1;
}

.right {
  width: 100%;
  background: linear-gradient(to bottom, #1C1A1F 0%, #1B1A1E 40%, #0E0C10 100%);
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  position: relative;
}

/* ! IMAGE SLIDER GLOBAL (if used full-screen elsewhere) */
.bg-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.bg-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.bg-slider img.active {
  opacity: 1;
}

/* ! LOGO */

.logo {
  width: 100%;
  /* position: absolute;
  top: 4rem; */
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.logo img {
  width: 50%;
  min-width: 350px;
}

/* ! TYPOGRAPHY & COMPONENTS */
.icon-white {
  color: white;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.claim {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

/* ! LANGUAGE SWITCHER */
.lang-overlay-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  outline: none;
}

.lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 27, 33, 0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-in-out;
}

.lang-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.lang-inner {
  text-align: center;
}

.lang-item {
  display: block;
  font-size: 2rem;
  margin: 1rem 0;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.lang-item:hover {
  transform: scale(1.05);
  color: gold;
}

.lang-close {
  margin-top: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}



/* ! RESPONSIVE: DESKTOP BREAKPOINT */
@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }



  .left {
    flex-grow: 1;
    flex-basis: 0;
    height: auto;
  }

  .right {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 28vw;       /* Basisbreite */
    max-width: 45rem;         /* Maximalbreite in Relation zum Bildschirm */
    width: 100%;
  }
}

/* ! Content */

.content__main {
  width: 75%;
  margin: 0 auto;
}

.content__main h1 {
  font-size: 1.7rem;
  width: 20rem;
  text-align: center;
  font-family: "Nothing you could do";
  margin: 0 auto;
  margin-bottom: 3rem;
}

.content__main p {
  text-align: justify;
  hyphens: auto;
  line-height: 1.6rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.offer {
 width: 15rem;
   text-align: center;
   margin: 0 auto;
}

.content__text {
  margin-bottom: 3rem;
}

.content__main :last-child {
  margin-bottom: 0;
}
