:root {
  --letterDimention: 250px;
  --letterDimentionTablet: 200px;
  --letterDimentionMobile: 150px;
}

#luce {
  width: 30%;
  height: auto;
  padding-bottom: 25px;
}

#aria {
  width: 45%;
  height: auto;
  padding-bottom: 25px;
}

#logo {
  width: 40%;
  height: auto;
  padding-bottom: 15px;
}

/* =========================
   CUSTOM CURSOR (cerchio)
   ========================= */
#softCursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;

  /* 👉 DIMENSIONE CURSORE:
            cambia qui per ingrandire/diminuire */
  width: 100px;
  height: 100px;

  border-radius: 50%;
  border: 1px solid rgba(246, 233, 215, 0.55);
  background: rgba(246, 233, 215, 0.08);
  backdrop-filter: blur(1px);

  transform: translate(-50%, -50%);
  opacity: 0;
}

/* Nascondi su touch */
@media (hover: none), (pointer: coarse) {
  #softCursor {
    display: none;
  }
}

/* =========================
   LIQUID EFFECT SOLO FOTO
   ========================= */
.photo-liquid {
  will-change: filter, transform;
  transform: translateZ(0);
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* attivo solo quando hoverato via JS (così controlli l’intensità) */
.photo-liquid.is-liquid {
  filter: url(#liquidFilter);
}

/* ===== TABLET (576px – 1199.98px) =====  TABELT*/
@media (min-width: 576px) and (max-width: 1199.98px) {
}

/* laptop */ /* Stili per laptop da 13" */
@media (min-width: 1280px) and (max-width: 1440px) {
  .custom-padding {
    padding: 20px 0 150px 0;
  }
}

/* PAD pro */
@media (min-width: 1024px) and (max-width: 1024px) {
  /* Stili per laptop da IPAD PRO" */
}

/* ===== MOBILE (max 575.98px) =====///// MOBILE MOBILE ----------------------------------__________-----______---___ */
@media (max-width: 575.98px) {
  #luce {
    width: 45%;
    height: auto;
    padding-bottom: 25px;
    padding-left: 10px;
  }

  #aria {
    width: 55%;
    height: auto;
    padding-bottom: 25px;
  }

  #logo {
    width: 80%;
    height: auto;
    padding-bottom: 15px;
  }
}
