/**
 * Marca TENTAZIONE: logo tipografico animado para header, mobile nav y footer.
 */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");

.tentazione-header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: min(92vw, 520px);
  min-width: 0;
  text-decoration: none !important;
}

.tentazione-brand-title {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 6.5vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tentazione-luminance {
  background: 50% 100% / 50% 50% no-repeat
    radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: tentazione-luminance-reveal 3s ease-in-out forwards 200ms,
    tentazione-luminance-glow 2.5s linear infinite 2s;
  cursor: pointer;
}

.mobile-nav__content .tentazione-brand-title,
footer .tentazione-brand-title,
.brand-slider .tentazione-brand-title {
  font-size: clamp(20px, 5vw, 30px);
}

.brand-slider .brand-image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

@keyframes tentazione-luminance-reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@keyframes tentazione-luminance-glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}

@keyframes tentazione-luminance-reveal-tight {
  80% {
    letter-spacing: 3px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@media (max-width: 400px) {
  .tentazione-luminance {
    animation: tentazione-luminance-reveal-tight 3s ease-in-out forwards 200ms,
      tentazione-luminance-glow 2.5s linear infinite 2s;
  }
}
