/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: rgb(10,10,10);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Inter, Helvetica, Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1 {
	font-family: "Oswald";
	font-size: 56px;
	padding-bottom: 64px;
	text-align: center;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  z-index: 1000;
}

/* Slots */
.nav-left { justify-self: start; display: flex; gap: 25px; align-items: center; }
.nav-center { justify-self: center; display: inline-flex; align-items: center; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 10px; }

/* Logo */
.nav-logo {
  height: 70px;
  width: auto;
  display: block;
  /*filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.15))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.05));
	transition: filter 180ms ease;*/
	 
	-webkit-user-drag: none;
  	user-select: none;
  	-webkit-user-select: none;
}

.nav-center:hover .nav-logo {
	filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.15))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));  
}

.nav-cta1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 12px;
  border-radius: 10px;
  opacity: 1;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,0.12);
  color: #000;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.nav-cta2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 12px;
  border-radius: 10px;
  opacity: 1;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,0.12);
  color: #000;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 1;
  background: rgba(255,255,255,0.9);
  color: #000;
  border-color: rgba(255,255,255,0.9);
}

/* Icon Buttons */
.icon-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.icon-link img {
  width: 42px;
  height: 42px;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.icon-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  width: 100%;
  background-image: url("Frontbild.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Optional: dunkles Overlay für bessere Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
}

.hero-content {
  transform: translateY(-10px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: min(1000px, 90vw);
}

.hero-logo {
  width: clamp(300px, 40vw, 500px);
  height: auto;
  filter:
    drop-shadow(0 0 10px rgba(10,10,10,0.8))
    drop-shadow(0 0 22px rgba(10,10,10,0.8));
  transform: translateX(-10px);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  padding-bottom: 24px;
}

.hero-claim {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(22px, 3.8vw, 64px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255, 1);
  text-shadow: 0 2px 18px rgba(0,0,0,0.65);
}

.hero-product {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(11px, 2.1vw, 32px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.8);
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

.hero-sub {
	font-family: "Oswald", system-ui, sans-serif;
	font-size: clamp(11px, 1.5vw, 15px);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
	text-shadow: 0 2px 14px rgba(0,0,0,0.9);
	padding-top: clamp(8px, 1.5vw, 12px);
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 1) 0%,
	rgba(10,10,10, .8) 50%,
    rgba(10, 10, 10, 0) 100%
	);
  pointer-events: none;
  z-index: 0;
}

.photo-strip{
  transform: translateY(-10px);
  position: relative; 
  padding: 60px 120px;
  overflow: visible;
  background: rgb(10,10,10);
}

.photo-strip__inner{
  width: 120vw;
  margin-left: calc(50% - 53vw);
  overflow: hidden;

}

.photo-strip__track{
  display: flex;
  gap: 10px;
  width: max-content;
  animation: photostrip-move 60s linear infinite; /* schneller = kleinere Zahl */
  will-change: transform;
}

@keyframes photostrip-move{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* weil du den Inhalt 2x hintereinander hast */
}

.photo-strip__track img{
  width: 10%;
  flex: 0 0 220px;        /* feste Breite pro Tile */
  height: 220px;
  width: 220px;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  scroll-snap-align: center; /* optional */
}

.text {	
  width: 100%;
  background-color: rgb(10, 10, 10);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px;
  position: relative;	
}

.text-content {
	max-width: min(1000px, 90vw);
	display: flex;
	flex-direction: column;
	align-items: center;

}

.text-card {
	font-family: "Space Grotesk";
	font-size: clamp(12px, 4.5vw, 16px);
	line-height: 1.6;
	max-width: 90ch;
}

.mietmich {
  min-height: 85vh;
  width: 100%;
  background-image: url("mietmich.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 64px;
}

/* Optional: dunkles Overlay für bessere Lesbarkeit */
.mietmich::after {
  content: "";
  position: absolute;
  inset: 0;

  /* LAYER */
  z-index: 0;
  pointer-events: none;

  /* GRADIENT: oben 100%, Mitte 80%, unten 100% */
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,0.9) 45%,
    rgba(10,10,10,0.9) 55%,
    rgba(10,10,10,1) 100%
  );
}

.mietmich-content {
  	max-width: min(1000px, 90vw);
	display: flex;
	z-index: 1;
	flex-direction: column;
	align-items: center;
	padding-top: 32px;
}

.mietmich-card {
	font-family: "Space Grotesk";
	font-size: clamp(12px, 4.5vw, 16px);
	line-height: 1.6;
	max-width: 90ch;
	text-align: center;
}

.mietmich-card2 {
	font-family: "Space Grotesk";
	font-size: clamp(12px, 4.5vw, 16px);
	line-height: 1.6;
	max-width: 90ch;
	text-align: center;
}

.mietmich-testi {
	font-family: "Oswald";
	font-size: clamp(12px, 4.5vw, 24px);
	line-height: 1.8;
	max-width: 75ch;
	padding: 64px 0;
	text-align: center;
}

.mietmich-kontakt {
	display: flex;
	flex-direction: row;
	align-items: space-between;
	gap: 64px;
	font-family: "Oswald";
	font-size: clamp(12px, 5.5vw, 24px);
	line-height: 1.8;
	max-width: 75ch;
	padding: 32px 0;
	text-align: center;
	text-decoration: none;
	color: white;
}

.footer {
  background: black;
  padding: 24px 24px 12px 12px ;
}

.footer-inner {
  width: min(1100px, 90vw);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 65px;                 /* fein & seriös */
  width: auto;
  opacity: 0.9;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 120ms ease;
}

.footer-logo-link:hover .footer-logo {
  opacity: 1;
}

/* Right Links */
.footer-links a {
  font-family: "Space Grotesk", system-ui, sans-serif ;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 120ms ease;
}
  .footer-links {
  display: flex;
  flex-direction: column;   /* 👈 ÜBEREINANDER */
  align-items: flex-end;
  gap: 10px;
}

.footer-links a {
  margin-left: 0;           /* alte horizontale Abstände neutralisieren */
}


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

@media (max-width: 700px) {
	
  .hero {
	  min-height: 80vh;
  }
  
  .navbar {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    height: 60px; /* Mobile-optimiert */
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(10px);    /* iPhone-Fix */
  }
	.icon-link {
		height: 10px;
	}
	
	  .nav-logo {
   display: none;
  }

  .nav-cta2 {
    height: 34px;
    font-size: 14px;
    padding: 0 12px;
  }
  .nav-cta1 {
    display: none;
  }
  
  .hero-content {
transform: translateY(20px);
  }
  
  .text::before {
	  top: -100px;
  left: 0;
  width: 100vw;
  height: 100px;

  }


  /* Wrapper/Offsets resetten (Startpunkt korrekt) */
  .photo-strip{
    padding: 24px 16px;
    transform: none;
    overflow: hidden;
  }

  .photo-strip__inner{
    width: 100%;
    margin-left: 0;
    transform: none;
    overflow: hidden;
  }

  /* Track NICHT mit transform überschreiben – Animation soll laufen */
  .photo-strip__track{
    animation-duration: 70s;    /* langsamer auf Mobile (optional) */
  }

  /* Tiles kleiner */
  .photo-strip__track img{
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
  }

  .photo-strip__track{
    animation-delay: 0.15s;
}
 .text h1, .mietmich h1{
	 font-size: 48px;
	 padding-bottom: 32px;
 }
  .text-card{
	  line-height: 1.2;
	  font-size: 12px;
	  max-width: 60ch;
  }  
  /*.text-card-lang {
	  display: none;
  }*/
  
	.mietmich-content {
		max-width: 80vw;
	}
  
  .mietmich-testi {
	  display: none;
  }
  
  .mietmich-card2 {
	  font-size: 14px;
	  max-width: 60ch;
	  line-height: 1.2;
  }
  
  .mietmich-kontakt {
	  flex-direction: column;
	  gap: 12px;
  }
  
}
