/* Theme overrides and utility tweaks for Communicore */
:root{
  --brand-red:#0b3d91;
  --brand-yellow:#b98b2b;
  --brand-dark:#071428;
}

/* Global typography */
body{font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}

/* Card and modal polish */
.card-shadow{box-shadow: 0 8px 24px rgba(7,20,40,0.08); border-radius: 12px;}

/* Modal sizing */
.modal-max{max-width:920px; width:100%;}
.modal-sm{max-width:420px;}

/* Buttons */
.btn-brand{background:var(--brand-red); color:#fff;}
.btn-brand:hover{background: #082a6b}

/* Tiny helpers */
.text-brand{color:var(--brand-red)}
.bg-brand{background:var(--brand-red)}

/* Improve images in galleries */
.project-photo{object-fit:cover; border-radius:8px;}

/* Accessibility focus */
:focus{outline: 3px solid rgba(11,61,145,0.12); outline-offset:2px}

/* Small responsive tweaks */
@media (max-width:640px){
  .modal-max{max-width:92%;}
}
