/* assets/style.css — Archivio Comunicati FNOMCeO */

:root {
  --color-primary:   #003366;
  --color-accent:    #0066cc;
  --color-light:     #f8f9fa;
  --color-border:    #dee2e6;
  --shadow-sm:       0 1px 4px rgba(0,0,0,.08);
  --shadow-md:       0 2px 12px rgba(0,0,0,.12);
  --radius-md:       .5rem;
}

/* ---- HEADER ---- */
.site-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  padding: 1.25rem 0;
  box-shadow: var(--shadow-md);
}

.header-logo {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

.site-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-subtitle {
  font-size: .8rem;
  opacity: .8;
}

.header-stats .stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.header-stats .stat-label {
  font-size: .7rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---- BARRA RICERCA ---- */
.search-bar-wrap {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.search-bar-wrap .form-control:focus {
  box-shadow: none;
  border-color: var(--color-accent);
}

/* ---- SIDEBAR ---- */
.sticky-sidebar {
  position: sticky;
  top: 70px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}

.cat-item {
  font-size: .88rem;
  padding: .6rem 1rem;
  transition: background .15s;
}

.cat-item.active {
  background-color: #e8f0ff;
  color: var(--color-primary);
  font-weight: 600;
  border-left: 3px solid var(--color-accent);
}

.cat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ---- CARD COMUNICAZIONE ---- */
.comunicazione-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow .2s, transform .1s;
}

.comunicazione-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.com-number {
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.com-prot {
  font-size: .75rem;
}

.com-title {
  font-size: .95rem;
  line-height: 1.4;
  margin-bottom: .25rem;
}

.com-link:hover {
  color: var(--color-accent) !important;
}

.card-footer {
  background: #fafafa;
  border-top-color: var(--color-border);
  font-size: .8rem;
}

.btn-xs {
  padding: .2rem .6rem;
  font-size: .78rem;
  line-height: 1.4;
}

.allegati-row {
  border-top: 1px dashed var(--color-border);
  padding-top: .5rem;
}

/* ---- BADGE ---- */
.badge.bg-light {
  font-weight: 400;
  font-size: .72rem;
}

mark {
  background-color: #fff3cd;
  padding: 0 2px;
  border-radius: 2px;
}

/* ---- PAGINAZIONE ---- */
.pagination .page-link {
  color: var(--color-accent);
  border-radius: .3rem;
  margin: 0 1px;
}

.pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ---- FILTRI ATTIVI ---- */
.filtri-attivi .badge {
  font-size: .78rem;
  cursor: default;
}

/* ---- FOOTER ---- */
.site-footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0 2rem;
}

/* ---- RIASSUNTO AI ---- */
.riassunto-box {
  background: #eef2ff !important;
  border-color: #c7d2fe !important;
  font-size: .9rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .site-title { font-size: 1.1rem; }
  .sticky-sidebar { position: relative; top: auto; max-height: none; }
  .com-title { font-size: .9rem; }
}
