html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}

body{
  background-color: rgb(255, 255, 255); 
}
.header{
     position: fixed; 

    right: 60px; 
    top: 30px; 
    z-index: 100;
}

#logo{
    position: fixed; 
    left: 20px; 
    top: 10px; 
    text-decoration: none;   /* Unterstreichung entfernen */

    font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 100px; 

   color: black;     /* oder deine Farbe */
    z-index: 999;
    
}

.schrift{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 40px;  

   color: black;  
   text-decoration: none; 


}

.schriftklein{
    font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: bold;
  font-size: 20px;  

   color: black;  
   text-decoration: none; 
}

.top{ 
    width: 100%; 
    position: relative;
      height: 100vh;
    background-color: rgb(255, 255, 255); 
/* WIESO HAT ES OBEN EINEN MARGIN?  */

}


.titel {
  position: absolute;
  top: 50%;
  left: 50%;
transform: translate(-50%, -70%); /* 👈 leicht nach oben */
  font-size: 70px;
  text-align: center;
  pointer-events: none; /* optional */
}

.band-container {
  width: 100%;
  margin-top: 40px;
  height: fit-content; 
  background-color:white;

   display: flex; 

    /* zwischenraum gleichmÃ¤ssig verteilen */

    flex-wrap: wrap ;
    /* wenn du keinen platz hast, springe in eine neue Zeile  */

   
    

}

.bandtitel{
  width: 100%; 
  height: fit-content; 
  /* background-color: chartreuse; */
  margin-left: 20px; 
}
.band1{
    width: 100%; 
    overflow-x: auto;
  white-space: nowrap; 
  /* keinen zeilenumbruch  */
 padding: 4px; 
    height: 300px; 
    /* background-color: blueviolet; */
        
}



.band1 img{
    height: 100%; 
    width: auto; 
    display: inline-block; 
    margin: 0 20px
}
.band2 img{
    height: 100%; 
    width: auto; 
    display: inline-block; 
    margin: 0 20px
}

.band2{
      width: 100%; 
    height: 300px; 
    /* background-color: rgb(117, 79, 153); */
     overflow-x: auto;
        padding: 4px; 
          white-space: nowrap; 
  /* keinen zeilenumbruch  */

    height: 300px; 
   
        
}

.footer{
    width: 100%;
    height: fit-content;
        margin-top: 200px;
        /* background-color: red; */
        margin-left: 20px; 
        margin-bottom: 50px; 
       
        
}


nav {

    position: fixed; 

      right: 60px; 
    top: 30px; 
    z-index: 100;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;


    display: flex;
    gap: 1px;
    justify-content: flex-end;
    /* oder start */
    /* nav ist nur container  */


}


nav a {

    display: block;
    background-color: rgb(255, 255, 255);

    text-decoration: none;
    color: rgb(0, 0, 0);

    padding: 10px;

    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
}

nav a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0); 

    
}
.growGif {
  transform-origin: center center;
  will-change: transform;
}

img{
    width: 100%;
    height: auto; 
   
/* WIESO WIRD ES NICHT KLEINER?  */
}

.scroll-container {

    
     height: 100px;
    width: auto;
  
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

.scroll-container img {
  padding: 10px;
}


.container img{ 
    width: 100%; 
    height: auto;
  display: block; 
}


.container{

    margin: 90px auto; 
    display: flex; 

    /* zwischenraum gleichmÃ¤ssig verteilen */

    flex-wrap: wrap ;
    /* wenn du keinen platz hast, springe in eine neue Zeile  */

    gap: 5px;

    justify-content:center;

}

.box{
    

    flex-basis: 170px;
    /* du darfst nicht grÃ¶sser sein, aber kleiner */
    flex-grow: 0; 

    /* border: 10px solid white; kÃ¶nnte auch dashed, spotted oder so sein  */
  
height:250px;
overflow: hidden;
background-color: rgb(255, 255, 255);

/* border: 5px dotted red; */



   
}

.box img {
     width: 100%;
    height: 100%;
    object-fit: cover;   /* DAS ist der Schlüssel */
    display: block;
}


.foto-einzel{
    height: 300px; 
    width: 600px;  
    padding: 50px; 


}
.foto-einzel img{
 width: 100%; 
    height: auto;
  display: block; 
}

.text{
    height: 500px; 
    width: 400px; 
 
    position: absolute; 
    top: 50px; 
    left: 570px; 
}






.gif {
  height: 400px;
  width: 300px; 
  margin-top: 200px;
  margin-right: 100px;
  float: right; /* Falls du es rechts haben willst */
}

.gif2{
    height: 400px;
  width: 300px; 
  margin-top: 200px;
  margin: 100px;
  float:left; /* Falls du es rechts haben willst */
}

.gif-wrapper {
  position: absolute;           /* übereinander */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  transform-origin: center center;
  will-change: transform, opacity;
}

.gif-wrapper img {
  width: 100%;
  height: auto;                 /* KEINE Verzerrung */
  display: block;
}

#growGif img {
  width: 100%;  /* Bild skalieren, nicht den Wrapper! */
  height: auto;
}



.hidden {
  display: none;
}

html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}


.übersicht{
    height:fit-content;
     display: flex;
width: 100vw;
    height: fit-content; /* <— Höhe richtet sich nach Inhalt */
  
    /* background-color: aqua; */
     padding: 50px;
       flex-wrap: wrap ;
    
}

.bilder{
  display: flex; 
     width: 100%;
    /* background-color: rgb(164, 59, 99); */
    min-height: 0;

   


}

.bildgross{
    display: flex; 
     width: 60%;
    /* background-color: rgb(251, 133, 179); */
    min-height: 300px;
     align-items: flex-start;  /* -> Bilder oben bündig */
    padding:10px; 
}
.bildklein{

    display: flex; 
    width: 40%;
    
    /* background-color: blueviolet; */
     flex-wrap: wrap;       /* → Bilder brechen um */
    gap: 10px;             /* Abstand zwischen Bildern */
    align-items: stretch;

    align-items: flex-start;  /* -> Bilder oben bündig */
    padding:10px; 
flex-grow: 0; 

    
}

.bildklein img{
   flex: 1; /* drei Bilder pro Reihe, flexibel */
 width: 100px; 
    object-fit: cover;    /* Bild bleibt schön zugeschnitten */
    display: block;
      object-fit: contain;/* NICHT zuschneiden, nicht verzerren */
}
.übersicht2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 50px;
}
.bildklein2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.bildklein2 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.textbild2{ 
    margin-top: 20px;
    display: flex; 
width: 80%;
height:fit-content;

/* background-color: brown; */

font-family: Arial, Helvetica, sans-serif;
font-size: large;
}

img{ 
    display: block; 
    width: 100%; 
    height: auto; 
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6); /* Seite sichtbar */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-content {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;

  /* NICHT fullscreen */
  max-width: 80vw;
  max-height: 80vh;

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

/* Bild bleibt unverzerrt */
#lightbox-img {
  max-width: 70vw;
  max-height: 70vh;
  object-fit: contain;
}

/* Navigation */
#prev,
#next,
#close {
  position: absolute;
  color: white;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
}

#prev { left: -40px; }
#next { right: -40px; }
#close { top: -10px; right: -10px; }


.filter-buttons button {
  padding: 10px 16px;
  margin: 5px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
 
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-style: bold; 
  font-size: 14px;
}

.filter-buttons button:hover {
  background-color: #000000;
   color: rgb(255, 255, 255);
}

/* INFOS  */
.übersicht2{
    height:fit-content;
     display: flex;
width: 100vw;
    height: fit-content; /* <— Höhe richtet sich nach Inhalt */
  
    /* background-color: aqua; */
     padding: 50px;
       flex-wrap: wrap ;
    
}

.bilder2{
  display: flex; 
     width: 100%;
    /* background-color: rgb(164, 59, 99); */
    min-height: 300px;

    height:fit-content;


}

.bildgross2{
    display: flex; 
     width: 80%;
    /* background-color: rgb(251, 133, 179); */
    height:fit-content; 
     align-items: flex-start;  /* -> Bilder oben bündig */
    padding:10px; 
  
}
.bildklein2{

    display: flex; 
    width: 20%;
    
    /* background-color: blueviolet; */
     flex-wrap: wrap;       /* → Bilder brechen um */
    gap: 10px;             /* Abstand zwischen Bildern */
    align-items: stretch;

    align-items: flex-start;  /* -> Bilder oben bündig */
    padding:10px; 
flex-grow: 0; 
margin-top: 50px; 

    
}

.bildklein2 img{
    flex: 1 1 calc(33.333% - 10px); /* drei Bilder pro Reihe, flexibel */
 width: 100px; 
    object-fit: cover;    /* Bild bleibt schön zugeschnitten */
    display: block;
      object-fit: contain;/* NICHT zuschneiden, nicht verzerren */
}

.text2{ 
    margin-top: 0px;

    display: flex; 
width: 80%;
height:fit-content;

/* background-color: brown; */

font-family: Arial, Helvetica, sans-serif;
font-size: large;
}

img{ 
    display: block; 
    width: 100%; 
    height: auto; 
}


.contact{
  position: absolute; 
  top: 300px; 
  left: 40px; 
}


.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


 

img{
    width: 100%; 
    height: auto; 
    display: block; 
    z-index: 90;
}

.portfolio-item{
    display: flex;
    margin-top: 40px; 

    /* margin= ein rand ausserhalb des elements
    padding= ein rand innerhalb des elements  */

}

.cycle-slideshow {
  position: relative;
  display: flex;
  justify-content: center;  /* Zentriert horizontal */
  align-items: center;
  width: 100%;
  height: auto;
}

.cycle-slideshow img {
  height: 500px;
  width: auto;
  display: block;
  margin: 0 auto; /* zusätzliche Absicherung */
}
.cycle-prev,
.cycle-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 999;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4); /* optional für Sichtbarkeit */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
}

.cycle-prev {
  left: 10px;
}

.cycle-next {
  right: 10px;
}

/* Falls du Pfeile per Inhalt einsetzen willst */
.cycle-prev::before {
  content: '←';
}

.cycle-next::before {
  content: '→';
}


.übersicht3 {
  display: block;
  padding: 50px;
}
.textbild3 {
  width:80%; 
}

.portfolio-item {
  display: flex;
  justify-content: center;
  width: 100%;
}