@font-face {
  font-family: 'Open Sans';
  src: url('../schriften/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #700046;
  --accent: #8d225f;
  --white: #ffffff;
}

/* Container */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

/* Einzelner Button */
.floating-button {
  background-color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-button:hover {
  background-color: var(--accent);
  transform: scale(1.1);
}

/* Icons */
.floating-button img {
  width: 22px;
  height: 22px;
  filter: invert(1); /* Weiß bei dunklem Hintergrund */
}
