
header.hero{
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  text-align: center;
  overflow: hidden;

  /* visual spacing (intentional) */
  padding-top: 3.5vh;
  padding-bottom: 7vh;
}


header.hero .logo{
  width: clamp(520px, 55vw, 1100px);
  max-width: 92vw;
  height: auto;
  margin: 0;
}

/* NAV – optically centered */
header.hero nav{
  align-self: center;
  transform: translateY(-7vh);
}

header.hero nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.8vh, 16px);
}

header.hero nav a{
  text-decoration: none;
  color: #000;
  font-family: "Owners Wide", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 40px);
}

header.hero nav a:hover{ text-decoration: underline; }


header.hero .fotostreifen-wrapper{
  width: 100%;
  overflow: hidden;

}

header.hero .filmstrip{
  width: 200vw;
  display: block;
  animation: scroll 20s linear infinite;
}


.fotostreifen-wrapper{
  width: 100%;
  overflow: hidden;
  justify-self: stretch;
  
  
}

.filmstrip{  
  width: 200vw;
  height: 400px;          /* 👈 controls how thin it is */
  display: block;
  animation: scroll 20s linear infinite;
}

.filmstrip img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

@keyframes scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}


h1{

    color: var("#000000");
    text-align: center;
    font-family: "Owners Wide";
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: normal; 
}

h2{
    color: var("#000000");
    font-family: "Owners Wide"; 
    
}

h3{
  color: var("#000000");
  font-family: "Owners Wide"; 
  
}

p {
    color: #000;
    font-family: "Owners";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6; 
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 40px;
}

.about-text p,
.experience-text p {
  max-width: 520px;
}

.experience-text p {
  white-space: pre-line;
}


.Photography {
    margin-top: 10rem;
    margin-left: 5rem;
    margin-right: 5rem;
  }

.southafrica {
  overflow: hidden;
  width: 100%;
  margin-bottom: 3rem;
}

.sa-hover {
  display: flex;
  gap: 1rem;
  width: max-content;
  transform: translateX(0);

  animation: scroll 30s linear infinite;
  animation-play-state: paused; 
}

/* run ONLY when hovering the strip */
.sa-hover:hover {
  animation-play-state: running;
}

.southafrica img {
  background: #f5f5f5;
  width: 220px;
  height: 220px;
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}




.sendnudes {
  overflow: hidden;
  width: 100%;
  margin-bottom: 3rem;
  
}

.nudes-hover {
  display: flex;
  gap: 1rem;
  width: max-content;
  transform: translateX(0);

  animation: scroll 30s linear infinite;
  animation-play-state: paused; /* stopped by default */
}

/* run ONLY when hovering the strip */
.nudes-hover:hover {
  animation-play-state: running;
}

.sendnudes img {
  background: #f5f5f5;
  width: 220px;
  height: 220px;
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.burlesque {
  overflow: hidden;
  width: 100%;
  
}

.burlesque-hover {
  display: flex;
  gap: 1rem;
  width: max-content;
  transform: translateX(0);

  animation: scroll 30s linear infinite;
  animation-play-state: paused; 
}

/* run ONLY when hovering the strip */
.burlesque-hover:hover {
  animation-play-state: running;
}

.burlesque img {
  background: #f5f5f5;
  width: 220px;
  height: 320px;
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.Video {
    margin-top: 10rem;
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .wiesodu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 40px;
    align-items: start;
  }
  
  /* keep video responsive */
  .video-side iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }
  
  /* spacing inside left column */
  .video-side h3 {
    margin-bottom: 1.5rem;
  }
  
 




  .Links {
    display: flex;
    gap: 5rem; /* space between links */
  }
  
    .underline {
      color: #000;
      font-family: "Owners";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 1.6;
      text-decoration: underline;
    }

  body{
    background: url("../images/white-texture.jpg") no-repeat center center fixed;
    background-size: cover;
  }

  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
  }