/* ------------------------------Nav-#Socialmedia--------------------------------- */
#socialmedia{
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
  position: fixed;
  width: 180px;
  right: -150px;
  bottom: 50px;
  box-shadow: 2px 2px 8px 0px rgba(75, 72, 72, 0.4);
  border-radius: 3px;
  
}
#socialmedia li{
  height: 28px;
  position:relative;
  background-color: none;
  
}
#socialmedia li a{
  color: white;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 30px;
  padding-left: 15%;
  right: -50px;
  
  
}
#socialmedia li:nth-child(1) a{
  background: #ff6c0a;
  border-radius: 6px 0 0 0;
}
#socialmedia li:nth-child(2) a{
  background: #4267B2;
  border-radius: 0;
}
#socialmedia li:nth-child(3) a{
  background: #E1306C;
  border-radius: 0;
}
#socialmedia li:nth-child(4) a{
  background: #25D366;
  border-radius: 0 0 0 6px;
}


#socialmedia li a i{
  position:absolute;
  top: 6px;
  left: 9px;
  font-size: 16px;
  cursor: pointer;
}


#socialmedia ul li a span{
  display: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
 
}


#socialmedia ul li a{
  transition: transform 0.3s ease-in-out;

}

#socialmedia ul li a:hover {
  transform: translateX(-130px);
  box-shadow: 0 0 1px 1px rgba(0,0,0,.3);
  cursor: pointer;
}
#socialmedia ul li:hover a span{
  margin-bottom: 15px;  
  padding-left: 10%;
  display: block;
  cursor: pointer;
}


/* ----------------------------FOOTER-COPYRIGHT--------------------------------- */

.footer-copyright {
  position: fixed;
  bottom: -15px; /* Höhe des Footers (z.B. 150px) */
  right: 0px;
  width: 215px;
  height: 35px;
  background-color: #2E3234;
  color: rgb(0, 0, 0);
  transition: bottom 0.3s ease-in-out; /* Sanfte Animation */
  border-radius: 10px 0 0 0;
  z-index: 1000;
}

/* Hover-Effekt: Wenn der Nutzer über den Footer fährt, wird er sichtbar */
.footer-copyright:hover {
  bottom: 0;
}

.footer-copyright p{
    font-size: 13px;
    margin-top: 10px;
    color: #d3cece;
    line-height: 0.3;
    text-align: center;
}


@media(max-width: 768px) {

  #socialmedia{
    bottom: 80px;
  }
}
