/* Layout pulsanti centrati */
#linktree-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

/* Stile pulsanti */
.linktree-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  color: white;
  width: 250px;
  text-align: center;
  transition: transform 0.2s;
}

.linktree-btn:hover {
  transform: scale(1.05);
}

.linktree-btn i {
  font-size: 28px;
  margin-bottom: 5px;
}

/* Colori per pulsanti social diversi */
.linktree-btn.instagram { background: #E1306C; }   /* rosa acceso Instagram */
.linktree-btn.facebook  { background: #1877F2; }   /* blu Facebook */
.linktree-btn.youtube   { background: #FF0000; }   /* rosso YouTube */
.linktree-btn.tiktok    { background: #010101; }   /* nero TikTok */
.linktree-btn.contact   { background: #00A99D; }   /* turchese per contatto */
.linktree-btn.external  { background: #6A1B9A; }   /* viola per sito esterno */

/* Caption sotto icona */
.linktree-caption {
  display: block;
  font-size: 14px;
  opacity: 0.9;
}

/* Nasconde il titolo della Basic Page */
.page-node-type-basic_page .page-title .field--name-title {
  display: none !important;
}
