.hero-section{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* sfondo */
.hero-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.008);
  z-index: 1;
    transition: opacity 1s ease-in-out;
}

/* scurimento */
.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* contenuto */
.hero-content{
  position: relative;
  z-index: 5;
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}

/* ✅ FASCIA CURVA + LINEA GIALLA */
.hero-section::before{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -110px;              /* spostala su/giù */
  width: 140%;
  height: 220px;               /* “spessore” della fascia */
  background: #121223;         /* colore fascia */
  border-top: 4px solid #ffd200; /* linea gialla */
  border-radius: 50% 50% 0 0;  /* curva */
  z-index: 4;
  pointer-events:none;
    filter: drop-shadow(0 0 12px rgba(255,210,0,0.25))
          drop-shadow(0 0 24px rgba(255,210,0,0.15));
}

.hero-content p {
    font-family: "bebasbookitalic", sans-serif; /* font elegante */
    font-size: 22px;              /* piccolo e raffinato */
    font-style: italic;           /* inclinato */
    letter-spacing: 4px;          /* spaziatura ampia */
    text-transform: lowercase;    /* tutto minuscolo */
    opacity: 0.85;                /* leggermente soft */
    margin-top: 15px;
}

.hero-cta {
  margin-top: 40px;
}

.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  background: #ffe600;
  color: #121223;

  padding: 16px 38px;
  border-radius: 20px;

  font-family: 'Bebasbold', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  text-decoration: none;
  height: 84px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 230, 0, 0.25);
}

.wishlist-btn i {
  font-size: 24px;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 15px rgba(255, 230, 0, 0.6),
    0 0 40px rgba(255, 230, 0, 0.3);
}

.wishlist-btn span {
  transition: all 1s ease;
}

.wishlist-btn:hover span {
  transform: rotate(2deg);
  letter-spacing: 6px;
}

.wishlist-btn span:link, span:visited
{
    color: #121223;
    text-decoration: none; 
}

.wishlist-btn:link,
.wishlist-btn:visited {
  color: #121223;
  text-decoration: none;
}