/* ============================================================
   BOW BENTO GRID — bento.css
   ============================================================ */

/* Sezione wrapper */
.bow-bento-section {
  background: #f8f7f6;
}

.bow-bento-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #1a1a2e !important;
  margin: 0 !important;
}

.bow-bento-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0 !important;
  text-align: right;
}

/* ── Grid ─────────────────────────────────────────────────── */
.bow-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* Layout bento asimmetrico */
.bow-bento-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
.bow-bento-card:nth-child(2) { grid-column: span 1; }
.bow-bento-card:nth-child(3) { grid-column: span 1; }
.bow-bento-card:nth-child(4) { grid-column: span 2; }

/* ── Card base ────────────────────────────────────────────── */
.bow-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 16px;
  min-height: 240px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease;
  cursor: default;
}

.bow-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ── Varianti colore ──────────────────────────────────────── */
.bow-bento-card--large {
  background: #ffffff;
  border: 1px solid #e8e8e8;
}

.bow-bento-card--accent {
  background: #e63946;
  color: #ffffff;
}

.bow-bento-card--dark {
  background: #1a1a2e;
  color: #ffffff;
}

.bow-bento-card--light {
  background: #f1faee;
  border: 1px solid #e0f0da;
}

/* ── Icona ────────────────────────────────────────────────── */
.bow-bento-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.bow-bento-card--large  .bow-bento-card__icon { background: rgba(26,26,46,0.06); color: #1a1a2e; }
.bow-bento-card--accent .bow-bento-card__icon { background: rgba(255,255,255,0.2); color: #ffffff; }
.bow-bento-card--dark   .bow-bento-card__icon { background: rgba(255,255,255,0.1); color: #ffffff; }
.bow-bento-card--light  .bow-bento-card__icon { background: rgba(69,123,157,0.12); color: #457b9d; }

/* ── Body testo ───────────────────────────────────────────── */
.bow-bento-card__body { flex: 1; }

.bow-bento-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.bow-bento-card--large .bow-bento-card__title,
.bow-bento-card--light .bow-bento-card__title { color: #1a1a2e; }
.bow-bento-card--accent .bow-bento-card__title,
.bow-bento-card--dark   .bow-bento-card__title { color: #ffffff; }

.bow-bento-card__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.bow-bento-card--large .bow-bento-card__text,
.bow-bento-card--light .bow-bento-card__text { color: #6c757d; }
.bow-bento-card--accent .bow-bento-card__text { color: rgba(255,255,255,0.8); }
.bow-bento-card--dark   .bow-bento-card__text { color: rgba(255,255,255,0.65); }

/* ── Tag badge ────────────────────────────────────────────── */
.bow-bento-card__tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.3em 0.8em;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bow-bento-card--large .bow-bento-card__tag  { background: rgba(26,26,46,0.06); color: #1a1a2e; }
.bow-bento-card--accent .bow-bento-card__tag { background: rgba(255,255,255,0.25); color: #ffffff; }
.bow-bento-card--dark   .bow-bento-card__tag { background: rgba(230,57,70,0.3); color: #ff8c94; }
.bow-bento-card--light  .bow-bento-card__tag { background: rgba(69,123,157,0.15); color: #457b9d; }

/* ── Decorazione angolo ───────────────────────────────────── */
.bow-bento-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.06;
  background: currentColor;
  transition: transform 0.4s ease;
}

.bow-bento-card:hover::before {
  transform: scale(1.4);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .bow-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bow-bento-card:nth-child(1) { grid-column: span 2; }
  .bow-bento-card:nth-child(2),
  .bow-bento-card:nth-child(3),
  .bow-bento-card:nth-child(4) { grid-column: span 1; }
  .bow-bento-subtitle { text-align: left; }
}

@media (max-width: 576px) {
  .bow-bento-grid {
    grid-template-columns: 1fr;
  }
  .bow-bento-card,
  .bow-bento-card:nth-child(1),
  .bow-bento-card:nth-child(4) { grid-column: span 1; }
  .bow-bento-card { min-height: 200px; }
}
