/* Larix Oy - kelluva Instagram-painike */

.instagram-floating-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.instagram-floating-button svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
}

.instagram-floating-button .instagram-dot {
  fill: #ffffff;
  stroke: none;
}

.instagram-floating-button:hover,
.instagram-floating-button:focus-visible {
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
  outline: none;
}

.instagram-floating-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Pienempi painike puhelimella */
@media (max-width: 600px) {
  .instagram-floating-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .instagram-floating-button svg {
    width: 28px;
    height: 28px;
  }
}
