/* PaintTeng theme tweaks */
.navbar .nav-link.active {
  color: #824A00 !important;
  font-weight: 600;
}

.bg-warning-subtle {
  background-color: #ffe7b3;
}


/* new */
:root{
  --pt-bg: #fff3da;
  --pt-orange: #f29a07;
  --pt-orange-dark: #d88705;
  --pt-cream: #ffeecd;
  --pt-border: #f1d2a6;
}

body{ background: var(--pt-bg); }



/* TILES */
.tile{
  display:block;
  background: var(--pt-orange);
  border-radius: 12px;
  padding: 14px 10px 12px;
  color: #1a1a1a;
  text-align:center;
  text-decoration:none;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  border: 1px solid rgba(0,0,0,.05);
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.16);
  background: var(--pt-orange-dark);
  color: #111;
}
.tile-icon{
  width: 64px; height: 64px; margin: 0 auto 6px;
  background: #111; color:#fff; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-size: 28px;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.12);
}
.tile-label{
  font-weight: 700; letter-spacing: .03em;
  color: #2b210f;
}