 
/* ===== CATEGORIE GRID ===== */

.categories-block {
  margin: 60px 0;
}

.categories-block h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CARD */
.category-grid li {
  background: linear-gradient(135deg, #1b1b1b, #232323);
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.category-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

/* LINK */
.category-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 18px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-radius: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* HOVER LINK */
.category-grid a:hover {
  background: linear-gradient(135deg, #ff0066, #ff4d9a);
  color: #fff;
}

/* Link stanze calde: niente sottolineatura e colore uniforme */
.hot-rooms-table .hot-room {
    text-decoration: none;   /* rimuove la sottolineatura */
    color: inherit;          /* eredita il colore del testo normale */
    display: block;          /* assicura che tutto il contenuto del link sia cliccabile */
}

/* Hover: puoi aggiungere un effetto se vuoi */
.hot-rooms-table .hot-room:hover {
    color: #ff0066;          /* colore al passaggio del mouse */
    text-decoration: none;   /* rimane senza sottolineatura */
}



/* MOBILE */
@media (max-width: 600px) {
  .category-grid a {
    min-height: 70px;
    font-size: 0.95rem;
  }
}