/* Circular Text Widget */
.circular-text-link {
  display: inline-block;
  text-decoration: none;
}

.circular-text-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Περιστρεφόμενο SVG κείμενο */
.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform-origin: 50% 50%;
  transform-box: fill-box;
  backface-visibility: hidden;
}

/* Κεντρικό icon */
.center-icon {
  position: relative;
  z-index: 2;
  border: 1px solid #201F1F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.circular-text-container:hover .center-icon {
  transform: scale(1.1);
  background-color: transparent !important;
}

.center-icon svg {
  display: block;
}

/* Στυλ κειμένου SVG */
.rotating-text text {
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
}

/* Προσβασιμότητα */
@media (prefers-reduced-motion: reduce) {
  .rotating-text {
    transform: rotate(0deg) !important;
    animation: none !important;
  }
}

/* Responsive defaults */
@media (max-width: 768px) {
  .circular-text-container {
    width: 160px !important;
    height: 160px !important;
  }
  
  .center-icon {
    width: 80px !important;
    height: 80px !important;
  }
  
  .center-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
}