

.container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.tile {
  display: flex;
  align-items: center;
  background-color: #f8f2ec;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 0 auto;
}

.tile:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer
}

.tile img {
  width: 50%;
  height: 450px; /* Adjusted height */
  object-fit: cover;
}

.tile .info {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  text-wrap: wrap;
}

.tile-left {
  flex-direction: row; /* Bild links, Text rechts */
}

.tile-right {
  flex-direction: row-reverse; /* Bild rechts, Text links */
}

.btn {
  margin: 40px 0 40px 0;
  background: #e0cdb2

;
  padding: 15px 40px;
  border-radius: 10px;
  
  
  text-align: center;
}

 .btn a {
  color:#5e4b45;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
 
}
.btn:hover {
  color: #5e4b45;
  text-decoration: underline;
  cursor: pointer;
 
}

/* Für mobile Geräte responsiv gestalten */
@media (max-width: 768px) {
  .tile, .tile-right {
    flex-direction: column;
  }

  .tile img {
    width: 100%;
    height: auto;
  }
  .tile .info {
    white-space: wrap;
    width: 100%;
    
  }

  .Partner {
    flex-direction: column;
    align-items: center;
  }
  .paar {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }
.paar img{
  width: 300px;
  height: 300px;
}
}

h2 {
  color: #5e4b45;
  text-align: center
;
}



.galerie-container {
   text-align: left;
    background-color:#f8f2ec;
    margin: 20px auto;
    border-radius: 40px;
    width: 90%;
    padding: 20px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);	
}



    .heading {  max-width: 85%;
        margin: 30px auto;
        padding: 20px;
        background: #f8f2ec;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);	
       
        
   }

   .Partner { 
    width: 100%;
    display : flex;
    justify-content : space-around;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);	
     border-radius: 10px;
     padding: 20px;
}


   .paar { 
   
    display : flex;
    flex-direction: column;
    align-items: center;
     width: 300px;
     height: 600px;
     overflow: hidden;
   
     
    }


    .paar img { 

    border-radius: 300px;
    width: 100%;
    height: 100%;
     object-fit: cover;
    
  
    
}


.KittenBilder { 
  width:90% ;
  padding: 20px;
margin: 10px auto;
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 60px;
margin-top: 60px;

 }

 .Bild { 
  width: 250px;
  height: 450px;
  margin:  0 10px;
  box-shadow: 0 0 20px 2px rgba(0, 0,0, .1);
  overflow: hidden;
  border-radius: 10px;
 }

 .Bild img  { 
  display: block;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
   }

   .Bild:hover  { 
      transform: scale(1.3);
      z-index: 2;
    }

    .Bild p { 
      text-align: center;
       }

 .Legenden-container {
  text-align: left;
    background-color:#f8f2ec;
    margin: 20px auto;
    border-radius: 10px;
    width: 90%;
    padding: 20px;
 box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);	
 }