/*
Theme Name: Phlox Child
Template: phlox
Author: Mesmin Stachis
Description: Thème enfant pour Phlox
Version: 1.0
*/

/* Import du style parent */
@import url("../phlox/style.css");

.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-float a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.social-float a img:hover {
  transform: scale(1.1);
}