/* ============================================
   DERELİ MARİNA — Floating Elements
   ============================================ */

/* --- Floating Social Bar (Right Center) --- */
.floating-social {
  position: fixed;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.floating-social a:hover {
  transform: translateX(-5px) scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.floating-social a.fs-whatsapp {
  background: #25D366;
}

.floating-social a.fs-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.floating-social a.fs-facebook {
  background: #1877F2;
}

.floating-social svg {
  width: 22px;
  height: 22px;
}


/* --- Floating WhatsApp Chat Button (Bottom Right) --- */
.floating-whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.floating-whatsapp-chat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: #20BA56;
  color: #fff;
}

.floating-whatsapp-chat svg {
  width: 24px;
  height: 24px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .floating-social {
    right: 8px;
    gap: 6px;
  }
  
  .floating-social a {
    width: 35px;
    height: 35px;
  }
  
  .floating-social svg {
    width: 16px;
    height: 16px;
  }
  
  .floating-whatsapp-chat {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .floating-whatsapp-chat svg {
    width: 20px;
    height: 20px;
  }
}
