body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #708090;
font-family: "embarcadero-mvb-pro-condense", sans-serif;
font-weight: 400;
font-style: normal;
}

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 100%;
  position: relative;
}

.head2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 100%;
  position: relative;
}

#dummycontainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(2vw);
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFA500;
    border-radius: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background-color: transparent;
    color: #90C226;
    border-radius: 3vw;
  }
}

.logo-bar {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21vh;
  width: 94%;
  font-size: 6.2vw;
  color: #90C226;
  padding: 1vh;
  box-sizing: border-box;
  white-space: nowrap;
}


.text-container {
  position: relative;
  width: 70%;
  background-color: transparent;
  color: #F0F0F0;
  box-sizing: border-box;
  z-index: 100;
  text-align: left;
  font-size: 5vh;
  transition: 0.3s;
  padding: 0.1em 0;
}

.text-container p {
  margin: 0;
}

.bottom-bar {
  height: 50vh;
  width: 94%;
  color: #90C226;
  font-size: 2.8vh;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1%;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 2vw;
  z-index: 3;
}

.logo-bar.visible {
  animation: fadeInSlideUp 3s forwards;
}

.logo-bar.hidden {
  opacity: 0;
  transform: translateY(2vw);
  transition: opacity 1s ease-out, transform 1s ease-out;
}


.medialinks-container,
.contactdatimp-container,
.bottom-bar-content3 {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 1%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.bottom-bar-content3 {
  font-size: 3vh;
}

.bottom-bar-content3 p {
  margin: 0;
  line-height: 1.4;
}

.bottom-bar-content2 {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2vw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 1%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* Media Query für mittelgroße Bildschirme: 2 Container nebeneinander, 2 darunter */
@media (max-width: 1200px) {
  .bottom-bar {
    flex-wrap: wrap;
  }
  
  .medialinks-container,
  .contactdatimp-container,
  .bottom-bar-content2,
  .bottom-bar-content3 {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

/* Media Query für kleine Bildschirme: alle Container untereinander */
@media (max-width: 768px) {
  .medialinks-container,
  .contactdatimp-container,
  .bottom-bar-content2,
  .bottom-bar-content3 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.bottom-bar-content2 h2 {
  font-size: 4vh;
  color: #90C226;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 3px 14px;
transition: color 0.5s;
}

.icon-text-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 10px;
  transition: color 0.5s ease;
}

.handmade-icon {
  height: 4vh;
  width: 4vh;
  margin-right: 1vh;
  vertical-align: middle;
  object-fit: contain;
  transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease;
}

.handmade-text {
  font-weight: bold;
  fon-size: 2.8vh;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease, text-shadow 0.5s ease, transform 0.5s ease;
}

.icon-text-wrapper:hover .handmade-text {
  transform: scale(1.05);
}

.icon-text-wrapper:hover .handmade-icon {
  transform: scale(1.1);
}

.contact,
.paypal,
.datenschutzimpressum {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: #90C226;
  transition: all 0.3s ease;
}

.contacttext,
.paypal-text {
  transition: all 0.3s ease;
  color: inherit;
}

.contact:hover,
.datenschutzimpressum:hover,
.paypal:hover {
  color: #FFA500;
}

.contact:hover img,
.paypal:hover img,
.datenschutzimpressum:hover img {
  transform: scale(1.1);
}

.contact a:hover,
.contact:hover .contacttext {
  color: #FFA500;
}

.medialinks-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.medialinks {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: #90C226;
  transition: all 0.3s ease;
}

.contact img,
.paypal img,
.datenschutzimpressum img {
  height: 4.5vh;
  width: 4.5vh;
}

.contact a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.medialinks img {
  width: 4.5vh;
  height: 4.5vh;
}

.medialinks span {
  transition: all 0.5s ease;
  font-size: 3vh;
  color: #90C226;
}

.language img {
  width: 4.5vh;
  height: 4.5vh;
}

.language span {
  font-size: 3vh;
}

.button-red {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5vh;
  height: 5.5vh;
  margin-left: -2px;
  border-radius: 50%;
  background-color: red;
  color: white;
  text-decoration: none;
  transition: width 0.5s ease, background-color 0.5s ease, padding 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.button-red img {
  height: 2.8vh;
  transition: all 0.5s ease;
}

.button-red span {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-red:hover {
  background-color: #90C226;
  width: auto;
  padding: 10px 18px;
  border-radius: 25px; /* Direkt gesetzt, ohne Transition */
}

.button-red:hover span {
  display: inline; 
  color: black;
  opacity: 1; 
}

/* Stellt sicher, dass der Pegeltext beim Hover über .medialinks nicht orange wird */
.button-red:hover .pegeltext {
  color: black !important; 
}

/* Media Query für Smartphones */
@media (max-width: 780px) {
  .button-red {
    background-color: #90C226; 
    width: auto; 
    height: auto; 
    border-radius: 25px; /* Direkt gesetzt */
  }

  .button-red span {
    display: inline; 
    color: black; 
    opacity: 1; 
  }
}

.language {
    display: flex; 
    gap: 40px; 
    align-items: center;
    justify-content: center; 
    margin-top: 20px; 
}

.language a {
    display: flex; 
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #90C226;
    gap: 20px; 
}

/* Hover für Sprachlinks */
.language a:hover {
    color: #FFA500; 
}

.language a:hover img {
    transform: scale(1.1); 
}

.medialinks:hover {
    color: #FFA500; 
}

.medialinks:hover img {
    transform: scale(1.1); 
}

.medialinks:hover span {
    color: #FFA500; 
}

.medialinks span:hover {
    color: #FFA500; 
}

#spacer {
    display: flex;
    min-height: 40px;
    width: 100%;
    position: relative;
}

.info-text {
    color: #F0F0F0;
}

.copyright {
    color: #F0F0F0;
}